.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
}
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Set `font-size` to support `rem` units
 *    Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 * 3. Style
 */
html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  color: #666;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/*
   * Removes default margin.
   */
body {
  margin: 0;
  font-size: 14px;
  color: #666;
  background-color: #f5f7f9;
}
/* Links
   ========================================================================== */
/*
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}
/*
   * Remove the outline on focused links when they are also active or hovered
   */
a:active,
a:hover {
  outline: none;
}
/*
   * Style
   */
a,
.uk-link {
  color: #b8b8b8;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #238bcd;
}
/* Text-level semantics
   ========================================================================== */
/*
   * 1. Remove the bottom border in Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/*
   * 1. Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   * 2. Add the correct font weight in Chrome, Edge, and Safari.
   */
/* 1 */
b,
strong {
  font-weight: inherit;
}
/* 2 */
b,
strong {
  font-weight: bolder;
}
/*
   * 1. Correct the odd `em` font sizing in all browsers.
   * 2. Consolas has a better baseline in running text compared to `Courier`
   * 3. Style
   */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 11px;
  /* 2 */
  font-family: Consolas, monaco, monospace;
  /* 3 */
  color: #435DBA;
  white-space: nowrap;
  padding: 2px 6px;
  border: 1px solid #EBEBED;
  border-radius: 3px;
}
/*
   * Emphasize
   */
em {
  color: #238bcd;
}
/* Preformatted text
   ========================================================================== */
/*
   * 1. Contain overflow in all browsers.
   * 2. Override UA
   */
pre {
  background: #ffffff;
}
pre code {
  font-family: Consolas, monaco, monospace;
}
/* Selection pseudo-element
   ========================================================================== */
::-moz-selection {
  background: #238bcd;
  text-shadow: none;
}
::selection {
  background: #238bcd;
  text-shadow: none;
}
/* ========================================================================
     Component: Link
   ========================================================================== */
/* Muted
   ========================================================================== */
a.uk-link-muted,
.uk-link-muted a {
  color: #999999;
}
a.uk-link-muted:hover,
.uk-link-muted a:hover {
  color: #666;
}
/* Text
   ========================================================================== */
/*
   * `!important` needed to override inverse component
   */
a.uk-link-text:not(:hover),
.uk-link-text a:not(:hover) {
  color: inherit !important;
}
a.uk-link-text:hover,
.uk-link-text a:hover {
  color: #999999;
}
/* Hero
   ========================================================================== */
/*
   * 1. Using `inline-block` to make it work with text alignment
   * 2. Center vertically
   * 3. Style
   */
.uk-heading-bullet::before {
  content: "";
  border-left: 4px solid #238bcd;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #238bcd;
}
/* ========================================================================
     Component: List
   ========================================================================== */
.uk-list,
.ap-child-list > ul {
  padding: 0;
  list-style: none;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #f2f5fa;
}
/* ========================================================================
     Component: Description list
   ========================================================================== */
/*
   * Term
   */
.uk-description-list > dd {
  font-size: 16px;
}
/* Caption
   ========================================================================== */
.uk-table caption {
  color: #999999;
}
/*
   * Striped
   */
.uk-table-striped > tr:nth-of-type(odd),
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f2f5fa;
}
/* Style modifiers
   ========================================================================== */
/*
   * Link
   */
.uk-icon-link:hover,
.uk-icon-link:focus {
  color: #238bcd;
  outline: none;
}
/*
   * Button
   * 1. Center icon vertically and horizontally
   */
.uk-icon-button {
  background: #ffffff;
}
/* Hover + Focus */
.uk-icon-button:hover,
.uk-icon-button:focus {
  background-color: #ffffff;
  color: #238bcd;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #238bcd;
  color: #ffffff;
}
/* Thumb
   ========================================================================== */
/*
   * 1. Reset
   * 2. Style
   */
/* Webkit */
.uk-range::-webkit-slider-thumb {
  background: #666;
}
/* Firefox */
.uk-range::-moz-range-thumb {
  background: #666;
}
/* Edge */
.uk-range::-ms-thumb {
  /* 1 */
  margin-top: 0;
}
/* IE11 */
.uk-range::-ms-thumb {
  background: #666;
}
.uk-input,
.uk-select,
.uk-textarea {
  background: #ffffff;
  color: #666;
}
/* Focus */
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
  outline: none;
  background-color: #ffffff;
}
/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
  background-color: #f2f5fa;
  color: #999999;
}
/*
   * Placeholder
   */
.uk-input:-ms-input-placeholder {
  color: #999999 !important;
}
.uk-input::-moz-placeholder {
  color: #999999;
}
.uk-input::-webkit-input-placeholder {
  color: #999999;
}
.uk-textarea:-ms-input-placeholder {
  color: #999999 !important;
}
.uk-textarea::-moz-placeholder {
  color: #999999;
}
.uk-textarea::-webkit-input-placeholder {
  color: #999999;
}
.uk-form-danger,
.uk-form-danger:focus {
  color: #f0506e;
  border-color: #f0506e !important;
}
/*
   * Success
   */
.uk-form-success,
.uk-form-success:focus {
  color: #32d296;
  border-color: #32d296 !important;
}
/*
   * Blank
   */
.uk-form-blank {
  background: none;
  border-color: transparent !important;
}
.uk-form-blank:focus {
  border-color: #EBEBED !important;
  border-style: dashed;
}
/*
   * Checked
   */
.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
  background-color: #238bcd;
  border-color: transparent;
}
/* Label
   ========================================================================== */
/* Icons
   ========================================================================== */
.uk-form-icon {
  color: #999999;
}
/*
   * Required for `a`.
   */
.uk-form-icon:hover {
  color: #666;
}
/* OnClick + Active */
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-button-default {
  background-color: #ffffff;
}
/* Hover + Focus */
.uk-button-default:hover,
.uk-button-default:focus {
  background-color: #ffffff;
  color: #238bcd;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #238bcd;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #238bcd;
  color: #ffffff;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #aaaaaa;
  color: #ffffff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-button-secondary {
  color: #666;
  border: 1px solid #aaaaaa;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #238bcd;
  color: #ffffff;
  border-color: #238bcd;
}
/*
   * Danger
   */
.uk-button-danger {
  background-color: transparent;
  color: #f0506e;
  border: 1px solid #f0506e;
}
/* Hover + Focus */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: transparent;
}
/* OnClick + Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #f0506e;
  color: #ffffff;
  border-color: #f0506e;
}
/*
   * Disabled
   * The same for all style modifiers
   */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-danger:disabled {
  background-color: #f2f5fa;
  color: #999999;
}
/* Text modifiers
   ========================================================================== */
/*
   * Text
   * 1. Reset
   * 2. Style
   */
.uk-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  position: relative;
}
/* Hover + Focus */
.uk-button-text:hover,
.uk-button-text:focus {
  color: #238bcd;
}
/* Disabled */
.uk-button-text:disabled {
  color: #999999;
}
/*
   * Link
   * 1. Reset
   * 2. Style
   */
.uk-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #b8b8b8;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #238bcd;
}
/* Disabled */
.uk-button-link:disabled {
  color: #999999;
  text-decoration: none;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-section-default,
.ap-container-default .uk-container {
  background: #ffffff;
}
/*
   * Primary
   */
.uk-section-primary,
.ap-container-primary .uk-container {
  background: #238bcd;
}
/*
   * Secondary
   */
.uk-section-secondary,
.ap-container-secondary .uk-container {
  background: #aaaaaa;
}
.uk-section-muted,
.ap-container-muted .uk-container {
  background: #f2f5fa;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-tile-default {
  background: #ffffff;
}
/*
   * Muted
   */
.uk-tile-muted {
  background: #f2f5fa;
}
/*
   * Primary
   */
.uk-tile-primary {
  background: #238bcd;
}
/*
   * Secondary
   */
.uk-tile-secondary {
  background: #aaaaaa;
}
/* ========================================================================
     Component: Card
   ========================================================================== */
/* Badge
   ========================================================================== */
.uk-card-badge {
  color: #666;
}
/*
   * Remove margin from adjacent element
   */
.uk-card-badge:first-child + * {
  margin-top: 0;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   * Note: Header and Footer are only implemented for the default style
   */
.uk-card-default {
  background: #ffffff;
  color: #666;
}
.uk-card-default.uk-card-hover:hover {
  background-color: #ffffff;
}
/*
   * Primary
   */
.uk-card-primary {
  background: #238bcd;
  color: #ffffff;
}
.uk-card-primary .uk-card-title {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-card-secondary {
  background: #aaaaaa;
  color: #ffffff;
}
.uk-card-secondary .uk-card-title {
  color: #ffffff;
}
/* ========================================================================
     Component: Close
   ========================================================================== */
/* Hover + Focus */
/* Hover + Focus */
.uk-totop:hover,
.uk-totop:focus {
  outline: none;
  background-color: transparent;
}
/* OnClick */
.uk-totop:active {
  color: #238bcd;
  background-color: transparent;
}
/* ========================================================================
     Component: Marker
   ========================================================================== */
/*
   * Addopts `uk-icon`
   */
.uk-marker {
  padding: 5px;
  background: #aaaaaa;
  color: #ffffff;
}
/* Hover + Focus */
.uk-marker:hover,
.uk-marker:focus {
  color: #ffffff;
  outline: none;
}
/* ========================================================================
     Component: Alert
   ========================================================================== */
.uk-alert {
  position: relative;
  background: #ffffff;
  color: #333;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-alert-primary {
  background: #ffffff;
  color: #238bcd;
}
/*
   * Success
   */
.uk-alert-success {
  background: #ffffff;
  color: #32d296;
}
/*
   * Warning
   */
.uk-alert-warning {
  background: #ffffff;
  color: #faa05a;
}
/*
   * Danger
   */
.uk-alert-danger {
  background: #ffffff;
  color: #f0506e;
}
/* ========================================================================
     Component: Badge
   ========================================================================== */
/*
   * 1. Style
   * 2. Center child vertically and horizontally
   */
.uk-badge {
  /* 1 */
  background: #238bcd;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #238bcd;
  color: #ffffff;
}
/* Color modifiers
   ========================================================================== */
/*
   * Success
   */
.uk-label-success {
  background-color: #32d296;
  color: #ffffff;
}
/*
   * Warning
   */
.uk-label-warning {
  background-color: #faa05a;
  color: #ffffff;
}
/*
   * Danger
   */
.uk-label-danger {
  background-color: #f0506e;
  color: #ffffff;
}
/* ========================================================================
     Component: Overlay
   ========================================================================== */
.uk-overlay {
  padding: 20px 20px;
}
/*
   * Remove margin from the last-child
   */
.uk-overlay > :last-child {
  margin-bottom: 0;
}
/* Title
   ========================================================================== */
/* Meta
   ========================================================================== */
.uk-article-meta {
  color: #999999;
}
.uk-article-meta a {
  color: #999999;
}
.uk-article-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Meta
   ========================================================================== */
.uk-comment-meta {
  color: #999999;
}
/* Style modifier
   ========================================================================== */
.uk-comment-primary {
  background-color: #f2f5fa;
}
.uk-search-input:focus {
  outline: none;
}
/* Placeholder */
.uk-search-input:-ms-input-placeholder {
  color: #999999 !important;
}
.uk-search-input::-moz-placeholder {
  color: #999999;
}
.uk-search-input::-webkit-input-placeholder {
  color: #999999;
}
/* Icon (Adopts `uk-icon`)
   ========================================================================== */
/*
   * Remove default focus style
   */
.uk-search-icon:focus {
  outline: none;
}
.uk-search .uk-search-icon {
  color: #999999;
}
/*
   * Required for `a`.
   */
.uk-search .uk-search-icon:hover {
  color: #999999;
}
/* Focus */
.uk-search-default .uk-search-input:focus {
  background-color: #ffffff;
}
/* Toggle
   ========================================================================== */
.uk-search-toggle {
  color: #999999;
}
/* Hover + Focus */
.uk-search-toggle:hover,
.uk-search-toggle:focus {
  color: #666;
}
/* Parent icon modifier
   ========================================================================== */
.uk-nav-parent-icon > .uk-parent > a::after {
  content: "";
  width: 1.5 em;
  height: 1.5 em;
}
/*
   * Items
   */
.uk-nav-default > li > a {
  color: #999999;
}
/* Hover + Focus */
.uk-nav-default > li > a:hover,
.uk-nav-default > li > a:focus {
  color: #238bcd;
  background-color: transparent;
}
/* Active */
.uk-nav-default > li.uk-active > a {
  background-color: transparent;
}
/*
   * Header
   */
/*
   * Sublists
   */
.uk-nav-default .uk-nav-sub a {
  color: #999999;
}
.uk-nav-default .uk-nav-sub a:hover,
.uk-nav-default .uk-nav-sub a:focus {
  color: #666;
}
/*
   * Items
   */
.uk-nav-primary > li > a {
  line-height: 1.5;
  color: #999999;
}
/* Hover + Focus */
.uk-nav-primary > li > a:hover,
.uk-nav-primary > li > a:focus {
  color: #238bcd;
}
/* Active */
/*
   * Header
   */
/*
   * Sublists
   */
.uk-nav-primary .uk-nav-sub a {
  color: #999999;
}
.uk-nav-primary .uk-nav-sub a:hover,
.uk-nav-primary .uk-nav-sub a:focus {
  color: #666;
}
/*
   * Nav items
   */
.uk-navbar-nav > li > a {
  color: #666;
}
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Microsoft Yahei";
}
/*
   * Hover
   * Apply hover style also to focus state and if dropdown is opened
   */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li > a.uk-open {
  color: #238bcd;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #238bcd;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #238bcd;
}
/* Dropdown
   ========================================================================== */
/*
   * Adopts `uk-dropdown`
   * 1. Hide by default
   * 2. Set position
   * 3. Set a default width
   * 4. Style
   */
.uk-navbar-dropdown {
  background: #ffffff;
  color: #666;
}
/*
   * Items
   */
.uk-navbar-dropdown-nav > li > a {
  color: #999999;
  padding: 5px 0;
}
/* Hover + Focus */
.uk-navbar-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:focus {
  color: #238bcd;
  background-color: transparent;
}
/* Active */
/*
   * Sublists
   */
.uk-navbar-dropdown-nav .uk-nav-sub a {
  color: #999999;
}
.uk-navbar-dropdown-nav .uk-nav-sub a:hover,
.uk-navbar-dropdown-nav .uk-nav-sub a:focus {
  color: #666;
}
/* Dropbar
   ========================================================================== */
.uk-navbar-dropbar {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
/* Items
   ========================================================================== */
/*
   * Items must target `a` elements to exclude other elements (e.g. dropdowns)
   * Using `:first-child` instead of `a` to support `span` elements for text
   * 1. Prevent gap if child element is `inline-block`, e.g. an icon
   * 2. Style
   */
.uk-subnav > * > :first-child {
  color: #999999;
}
/* Hover + Focus */
.uk-subnav > * > a:hover,
.uk-subnav > * > a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}
/* Active */
/* Pill modifier
   ========================================================================== */
.uk-subnav-pill > * > :first-child {
  color: #999999;
}
/* Hover + Focus */
.uk-subnav-pill > * > a:hover,
.uk-subnav-pill > * > a:focus {
  background-color: #ffffff;
  color: #666;
}
/* OnClick */
.uk-subnav-pill > * > a:active {
  background-color: #ffffff;
}
/* Active */
.uk-subnav-pill > .uk-active > a {
  background-color: #238bcd;
  color: #ffffff;
}
/* Disabled
   * The same for all style modifiers
   ========================================================================== */
.uk-subnav > .uk-disabled > a {
  color: #999999;
}
/* Items
   ========================================================================== */
.uk-breadcrumb > * > * {
  color: #999999;
}
/* Hover + Focus */
.uk-breadcrumb > * > :hover,
.uk-breadcrumb > * > :focus {
  color: #666;
  text-decoration: none;
}
/* Disabled */
.uk-breadcrumb > .uk-disabled > * {
  color: #999999;
}
/* Active */
/* Items
   ========================================================================== */
/*
   * 1. Prevent gap if child element is `inline-block`, e.g. an icon
   * 2. Style
   */
.uk-pagination > * > * {
  color: #999999;
}
/* Hover + Focus */
.uk-pagination > * > :hover,
.uk-pagination > * > :focus {
  background-color: #ffffff;
}
/* Active */
.uk-pagination > .uk-active > * {
  color: #238bcd;
  background-color: transparent;
}
/* Disabled */
.uk-pagination > .uk-disabled > * {
  color: #999999;
  background-color: transparent;
}
/* Items
   ========================================================================== */
/*
   * Items must target `a` elements to exclude other elements (e.g. dropdowns)
   * 1. Center text if a width is set
   * 2. Style
   */
.uk-tab > * > a {
  color: #999999;
}
/* Hover + Focus */
.uk-tab > * > a:hover,
.uk-tab > * > a:focus {
  color: #666;
  text-decoration: none;
  border-color: transparent;
}
/* Active */
.uk-tab > .uk-active > a {
  border-color: #238bcd;
}
/* Disabled */
.uk-tab > .uk-disabled > a {
  color: #999999;
}
/* Items
   ========================================================================== */
/* Hover + Focus */
.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
  background-color: rgba(248, 108, 74, 0.4);
  outline: none;
  border-color: transparent;
}
/* OnClick */
.uk-dotnav > * > :active {
  background-color: #238bcd;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #238bcd;
  border-color: transparent;
}
/* ========================================================================
     Component: Dropdown
   ========================================================================== */
.uk-dropdown {
  background: #ffffff;
  color: #666;
}
/*
   * Items
   */
.uk-dropdown-nav > li > a {
  color: #999999;
}
/* Hover + Focus + Active */
.uk-dropdown-nav > li > a:hover,
.uk-dropdown-nav > li > a:focus,
.uk-dropdown-nav > li.uk-active > a {
  background-color: transparent;
}
/*
   * Header
   */
.uk-dropdown-nav .uk-nav-header {
  color: #238bcd;
}
/*
   * Sublists
   */
.uk-dropdown-nav .uk-nav-sub a {
  color: #999999;
}
.uk-dropdown-nav .uk-nav-sub a:hover,
.uk-dropdown-nav .uk-nav-sub a:focus {
  color: #238bcd;
}
/* Dialog
   ========================================================================== */
/*
   * 1. Create position context for spinner and close button
   * 2. Dimensions
   * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
   *    `!important` needed to overwrite `uk-width-auto`. See `#modal-media-image` in tests
   * 4. Style
   * 5. Slide-in transition
   */
.uk-modal-dialog {
  background: #ffffff;
}
/*
   * Open
   */
.uk-open > .uk-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Message
  ========================================================================== */
.uk-notification-message {
  background: #f2f5fa;
  color: #666;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-notification-message-primary {
  color: #238bcd;
}
/*
   * Success
   */
.uk-notification-message-success {
  color: #32d296;
}
/*
   * Warning
   */
.uk-notification-message-warning {
  color: #faa05a;
}
/*
   * Danger
   */
.uk-notification-message-danger {
  color: #f0506e;
}
/* ========================================================================
     Component: Tooltip
   ========================================================================== */
.uk-tooltip {
  /* 4 */
  background: #238bcd;
  color: #ffffff;
}
/*
   * Remove animated circles for indeterminate state in IE11 and Edge
   */
.uk-progress:indeterminate {
  color: transparent;
}
/*
   * Progress container
   * 2. Remove progress bar for indeterminate state in Firefox
   */
.uk-progress::-webkit-progress-bar {
  background-color: #f2f5fa;
  border-radius: 500px;
  overflow: hidden;
}
/*
   * Progress bar
   * 1. Remove right border in IE11 and Edge
   */
.uk-progress::-webkit-progress-value {
  background-color: #238bcd;
}
.uk-progress::-moz-progress-bar {
  background-color: #238bcd;
}
.uk-progress::-ms-fill {
  background-color: #238bcd;
}
/* ========================================================================
     Component: Text
   ========================================================================== */
/* Style modifiers
   ========================================================================== */
.uk-text-meta {
  color: #999999;
}
.uk-text-meta a {
  color: #999999;
}
.uk-text-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Size modifiers
   ========================================================================== */
.uk-text-small {
  font-size: 12px;
  line-height: 1.5;
}
.uk-text-large {
  font-size: 20px;
  line-height: 1.5;
}
/* Weight modifier
   ========================================================================== */
.uk-text-bold {
  font-weight: bolder;
}
/* Transform modifier
   ========================================================================== */
.uk-text-uppercase {
  text-transform: uppercase !important;
}
.uk-text-capitalize {
  text-transform: capitalize !important;
}
.uk-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
   ========================================================================== */
.uk-text-muted {
  color: #999999 !important;
}
.uk-text-primary {
  color: #238bcd !important;
}
.uk-text-success {
  color: #32d296 !important;
}
.uk-text-warning {
  color: #faa05a !important;
}
.uk-text-danger {
  color: #f0506e !important;
}
/* Background modifier */
.uk-text-background {
  color: #238bcd !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #238bcd;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f2f5fa;
}
.uk-background-primary {
  background-color: #238bcd;
}
.uk-background-secondary {
  background-color: #aaaaaa;
}
/* ========================================================================
     Component: Inverse
   ========================================================================== */
.uk-light a,
.uk-light .uk-link,
.uk-section-primary:not(.uk-preserve-color) a,
.uk-section-primary:not(.uk-preserve-color) .uk-link,
.uk-section-secondary:not(.uk-preserve-color) a,
.uk-section-secondary:not(.uk-preserve-color) .uk-link,
.uk-tile-primary:not(.uk-preserve-color) a,
.uk-tile-primary:not(.uk-preserve-color) .uk-link,
.uk-tile-secondary:not(.uk-preserve-color) a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link,
.uk-card-primary.uk-card-body a,
.uk-card-primary.uk-card-body .uk-link,
.uk-card-primary > :not([class*='uk-card-media']) a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link,
.uk-card-secondary.uk-card-body a,
.uk-card-secondary.uk-card-body .uk-link,
.uk-card-secondary > :not([class*='uk-card-media']) a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link,
.uk-overlay-primary a,
.uk-overlay-primary .uk-link,
.ap-toolbar a,
.ap-toolbar .uk-link {
  color: #ffffff;
}
.uk-light a:hover,
.uk-light .uk-link:hover,
.uk-section-primary:not(.uk-preserve-color) a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-section-secondary:not(.uk-preserve-color) a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-primary:not(.uk-preserve-color) a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-link:hover,
.uk-tile-secondary:not(.uk-preserve-color) a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-link:hover,
.uk-card-primary.uk-card-body a:hover,
.uk-card-primary.uk-card-body .uk-link:hover,
.uk-card-primary > :not([class*='uk-card-media']) a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-card-secondary.uk-card-body a:hover,
.uk-card-secondary.uk-card-body .uk-link:hover,
.uk-card-secondary > :not([class*='uk-card-media']) a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-link:hover,
.uk-overlay-primary a:hover,
.uk-overlay-primary .uk-link:hover,
.ap-toolbar a:hover,
.ap-toolbar .uk-link:hover {
  color: #ffffff;
}
.uk-light em,
.uk-section-primary:not(.uk-preserve-color) em,
.uk-section-secondary:not(.uk-preserve-color) em,
.uk-tile-primary:not(.uk-preserve-color) em,
.uk-tile-secondary:not(.uk-preserve-color) em,
.uk-card-primary.uk-card-body em,
.uk-card-primary > :not([class*='uk-card-media']) em,
.uk-card-secondary.uk-card-body em,
.uk-card-secondary > :not([class*='uk-card-media']) em,
.uk-overlay-primary em,
.ap-toolbar em {
  color: #ffffff;
}
.uk-light h1,
.uk-light .uk-h1,
.uk-light h2,
.uk-light .uk-h2,
.uk-light h3,
.uk-light .uk-h3,
.uk-light h4,
.uk-light .uk-h4,
.uk-light h5,
.uk-light .uk-h5,
.uk-light h6,
.uk-light .uk-h6,
.uk-section-primary:not(.uk-preserve-color) h1,
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
.uk-section-primary:not(.uk-preserve-color) h2,
.uk-section-primary:not(.uk-preserve-color) .uk-h2,
.uk-section-primary:not(.uk-preserve-color) h3,
.uk-section-primary:not(.uk-preserve-color) .uk-h3,
.uk-section-primary:not(.uk-preserve-color) h4,
.uk-section-primary:not(.uk-preserve-color) .uk-h4,
.uk-section-primary:not(.uk-preserve-color) h5,
.uk-section-primary:not(.uk-preserve-color) .uk-h5,
.uk-section-primary:not(.uk-preserve-color) h6,
.uk-section-primary:not(.uk-preserve-color) .uk-h6,
.uk-section-secondary:not(.uk-preserve-color) h1,
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
.uk-section-secondary:not(.uk-preserve-color) h2,
.uk-section-secondary:not(.uk-preserve-color) .uk-h2,
.uk-section-secondary:not(.uk-preserve-color) h3,
.uk-section-secondary:not(.uk-preserve-color) .uk-h3,
.uk-section-secondary:not(.uk-preserve-color) h4,
.uk-section-secondary:not(.uk-preserve-color) .uk-h4,
.uk-section-secondary:not(.uk-preserve-color) h5,
.uk-section-secondary:not(.uk-preserve-color) .uk-h5,
.uk-section-secondary:not(.uk-preserve-color) h6,
.uk-section-secondary:not(.uk-preserve-color) .uk-h6,
.uk-tile-primary:not(.uk-preserve-color) h1,
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
.uk-tile-primary:not(.uk-preserve-color) h2,
.uk-tile-primary:not(.uk-preserve-color) .uk-h2,
.uk-tile-primary:not(.uk-preserve-color) h3,
.uk-tile-primary:not(.uk-preserve-color) .uk-h3,
.uk-tile-primary:not(.uk-preserve-color) h4,
.uk-tile-primary:not(.uk-preserve-color) .uk-h4,
.uk-tile-primary:not(.uk-preserve-color) h5,
.uk-tile-primary:not(.uk-preserve-color) .uk-h5,
.uk-tile-primary:not(.uk-preserve-color) h6,
.uk-tile-primary:not(.uk-preserve-color) .uk-h6,
.uk-tile-secondary:not(.uk-preserve-color) h1,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
.uk-tile-secondary:not(.uk-preserve-color) h2,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h2,
.uk-tile-secondary:not(.uk-preserve-color) h3,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h3,
.uk-tile-secondary:not(.uk-preserve-color) h4,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h4,
.uk-tile-secondary:not(.uk-preserve-color) h5,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h5,
.uk-tile-secondary:not(.uk-preserve-color) h6,
.uk-tile-secondary:not(.uk-preserve-color) .uk-h6,
.uk-card-primary.uk-card-body h1,
.uk-card-primary.uk-card-body .uk-h1,
.uk-card-primary.uk-card-body h2,
.uk-card-primary.uk-card-body .uk-h2,
.uk-card-primary.uk-card-body h3,
.uk-card-primary.uk-card-body .uk-h3,
.uk-card-primary.uk-card-body h4,
.uk-card-primary.uk-card-body .uk-h4,
.uk-card-primary.uk-card-body h5,
.uk-card-primary.uk-card-body .uk-h5,
.uk-card-primary.uk-card-body h6,
.uk-card-primary.uk-card-body .uk-h6,
.uk-card-primary > :not([class*='uk-card-media']) h1,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-primary > :not([class*='uk-card-media']) h2,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-primary > :not([class*='uk-card-media']) h3,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-primary > :not([class*='uk-card-media']) h4,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-primary > :not([class*='uk-card-media']) h5,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-primary > :not([class*='uk-card-media']) h6,
.uk-card-primary > :not([class*='uk-card-media']) .uk-h6,
.uk-card-secondary.uk-card-body h1,
.uk-card-secondary.uk-card-body .uk-h1,
.uk-card-secondary.uk-card-body h2,
.uk-card-secondary.uk-card-body .uk-h2,
.uk-card-secondary.uk-card-body h3,
.uk-card-secondary.uk-card-body .uk-h3,
.uk-card-secondary.uk-card-body h4,
.uk-card-secondary.uk-card-body .uk-h4,
.uk-card-secondary.uk-card-body h5,
.uk-card-secondary.uk-card-body .uk-h5,
.uk-card-secondary.uk-card-body h6,
.uk-card-secondary.uk-card-body .uk-h6,
.uk-card-secondary > :not([class*='uk-card-media']) h1,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
.uk-card-secondary > :not([class*='uk-card-media']) h2,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h2,
.uk-card-secondary > :not([class*='uk-card-media']) h3,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h3,
.uk-card-secondary > :not([class*='uk-card-media']) h4,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h4,
.uk-card-secondary > :not([class*='uk-card-media']) h5,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h5,
.uk-card-secondary > :not([class*='uk-card-media']) h6,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h6,
.uk-overlay-primary h1,
.uk-overlay-primary .uk-h1,
.uk-overlay-primary h2,
.uk-overlay-primary .uk-h2,
.uk-overlay-primary h3,
.uk-overlay-primary .uk-h3,
.uk-overlay-primary h4,
.uk-overlay-primary .uk-h4,
.uk-overlay-primary h5,
.uk-overlay-primary .uk-h5,
.uk-overlay-primary h6,
.uk-overlay-primary .uk-h6,
.ap-toolbar h1,
.ap-toolbar .uk-h1,
.ap-toolbar h2,
.ap-toolbar .uk-h2,
.ap-toolbar h3,
.ap-toolbar .uk-h3,
.ap-toolbar h4,
.ap-toolbar .uk-h4,
.ap-toolbar h5,
.ap-toolbar .uk-h5,
.ap-toolbar h6,
.ap-toolbar .uk-h6 {
  color: #ffffff;
}
.uk-light blockquote,
.uk-section-primary:not(.uk-preserve-color) blockquote,
.uk-section-secondary:not(.uk-preserve-color) blockquote,
.uk-tile-primary:not(.uk-preserve-color) blockquote,
.uk-tile-secondary:not(.uk-preserve-color) blockquote,
.uk-card-primary.uk-card-body blockquote,
.uk-card-primary > :not([class*='uk-card-media']) blockquote,
.uk-card-secondary.uk-card-body blockquote,
.uk-card-secondary > :not([class*='uk-card-media']) blockquote,
.uk-overlay-primary blockquote,
.ap-toolbar blockquote {
  color: #ffffff;
}
.uk-light .uk-heading-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-primary,
.uk-card-primary.uk-card-body .uk-heading-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-primary,
.uk-card-secondary.uk-card-body .uk-heading-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-primary,
.uk-overlay-primary .uk-heading-primary,
.ap-toolbar .uk-heading-primary {
  color: #ffffff;
}
.uk-light .uk-heading-hero,
.uk-section-primary:not(.uk-preserve-color) .uk-heading-hero,
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-hero,
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-hero,
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-hero,
.uk-card-primary.uk-card-body .uk-heading-hero,
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-hero,
.uk-card-secondary.uk-card-body .uk-heading-hero,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-hero,
.uk-overlay-primary .uk-heading-hero,
.ap-toolbar .uk-heading-hero {
  color: #ffffff;
}
.uk-light .uk-icon-button,
.uk-section-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-section-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-primary:not(.uk-preserve-color) .uk-icon-button,
.uk-tile-secondary:not(.uk-preserve-color) .uk-icon-button,
.uk-card-primary.uk-card-body .uk-icon-button,
.uk-card-primary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-card-secondary.uk-card-body .uk-icon-button,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-icon-button,
.uk-overlay-primary .uk-icon-button,
.ap-toolbar .uk-icon-button {
  background-color: #ffffff;
  background-image: none;
}
.uk-light .uk-radio:checked,
.uk-light .uk-checkbox:checked,
.uk-light .uk-checkbox:indeterminate,
.uk-section-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-section-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-section-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-primary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-primary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-tile-secondary:not(.uk-preserve-color) .uk-radio:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:checked,
.uk-tile-secondary:not(.uk-preserve-color) .uk-checkbox:indeterminate,
.uk-card-primary.uk-card-body .uk-radio:checked,
.uk-card-primary.uk-card-body .uk-checkbox:checked,
.uk-card-primary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-primary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-primary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-card-secondary.uk-card-body .uk-radio:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:checked,
.uk-card-secondary.uk-card-body .uk-checkbox:indeterminate,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-radio:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:checked,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-checkbox:indeterminate,
.uk-overlay-primary .uk-radio:checked,
.uk-overlay-primary .uk-checkbox:checked,
.uk-overlay-primary .uk-checkbox:indeterminate,
.ap-toolbar .uk-radio:checked,
.ap-toolbar .uk-checkbox:checked,
.ap-toolbar .uk-checkbox:indeterminate {
  background-color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-form-label,
.uk-section-primary:not(.uk-preserve-color) .uk-form-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-form-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-form-label,
.uk-card-primary.uk-card-body .uk-form-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-form-label,
.uk-card-secondary.uk-card-body .uk-form-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-form-label,
.uk-overlay-primary .uk-form-label,
.ap-toolbar .uk-form-label {
  color: #ffffff;
}
.uk-light .uk-button-default,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default,
.uk-card-primary.uk-card-body .uk-button-default,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default,
.uk-card-secondary.uk-card-body .uk-button-default,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default,
.uk-overlay-primary .uk-button-default,
.ap-toolbar .uk-button-default {
  background-color: #ffffff;
  color: #333;
  border-color: transparent;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-default:hover,
.uk-light .uk-button-default:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:focus,
.uk-card-primary.uk-card-body .uk-button-default:hover,
.uk-card-primary.uk-card-body .uk-button-default:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-card-secondary.uk-card-body .uk-button-default:hover,
.uk-card-secondary.uk-card-body .uk-button-default:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:focus,
.uk-overlay-primary .uk-button-default:hover,
.uk-overlay-primary .uk-button-default:focus,
.ap-toolbar .uk-button-default:hover,
.ap-toolbar .uk-button-default:focus {
  background-color: #ffffff;
  color: #238bcd;
  border-color: transparent;
  box-shadow: none;
}
.uk-light .uk-button-default:active,
.uk-light .uk-button-default.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-default.uk-active,
.uk-card-primary.uk-card-body .uk-button-default:active,
.uk-card-primary.uk-card-body .uk-button-default.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-default.uk-active,
.uk-card-secondary.uk-card-body .uk-button-default:active,
.uk-card-secondary.uk-card-body .uk-button-default.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-default.uk-active,
.uk-overlay-primary .uk-button-default:active,
.uk-overlay-primary .uk-button-default.uk-active,
.ap-toolbar .uk-button-default:active,
.ap-toolbar .uk-button-default.uk-active {
  background-color: #238bcd;
  color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-button-primary,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary,
.uk-card-primary.uk-card-body .uk-button-primary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary,
.uk-card-secondary.uk-card-body .uk-button-primary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary,
.uk-overlay-primary .uk-button-primary,
.ap-toolbar .uk-button-primary {
  background-color: #238bcd;
  color: #ffffff;
  border-color: transparent;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-primary:hover,
.uk-light .uk-button-primary:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:focus,
.uk-card-primary.uk-card-body .uk-button-primary:hover,
.uk-card-primary.uk-card-body .uk-button-primary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-card-secondary.uk-card-body .uk-button-primary:hover,
.uk-card-secondary.uk-card-body .uk-button-primary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:focus,
.uk-overlay-primary .uk-button-primary:hover,
.uk-overlay-primary .uk-button-primary:focus,
.ap-toolbar .uk-button-primary:hover,
.ap-toolbar .uk-button-primary:focus {
  color: #ffffff;
  border-color: transparent;
  box-shadow: none;
}
.uk-light .uk-button-primary:active,
.uk-light .uk-button-primary.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-primary.uk-active,
.uk-card-primary.uk-card-body .uk-button-primary:active,
.uk-card-primary.uk-card-body .uk-button-primary.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-primary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-primary:active,
.uk-card-secondary.uk-card-body .uk-button-primary.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-primary.uk-active,
.uk-overlay-primary .uk-button-primary:active,
.uk-overlay-primary .uk-button-primary.uk-active,
.ap-toolbar .uk-button-primary:active,
.ap-toolbar .uk-button-primary.uk-active {
  color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-button-secondary,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary,
.uk-card-primary.uk-card-body .uk-button-secondary,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary,
.uk-card-secondary.uk-card-body .uk-button-secondary,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary,
.uk-overlay-primary .uk-button-secondary,
.ap-toolbar .uk-button-secondary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  background-image: none;
  box-shadow: none;
}
.uk-light .uk-button-secondary:hover,
.uk-light .uk-button-secondary:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:focus,
.uk-card-primary.uk-card-body .uk-button-secondary:hover,
.uk-card-primary.uk-card-body .uk-button-secondary:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-card-secondary.uk-card-body .uk-button-secondary:hover,
.uk-card-secondary.uk-card-body .uk-button-secondary:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:focus,
.uk-overlay-primary .uk-button-secondary:hover,
.uk-overlay-primary .uk-button-secondary:focus,
.ap-toolbar .uk-button-secondary:hover,
.ap-toolbar .uk-button-secondary:focus {
  background-color: transparent;
  color: #ffffff;
  box-shadow: none;
}
.uk-light .uk-button-secondary:active,
.uk-light .uk-button-secondary.uk-active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-section-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-secondary.uk-active,
.uk-card-primary.uk-card-body .uk-button-secondary:active,
.uk-card-primary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-secondary.uk-active,
.uk-card-secondary.uk-card-body .uk-button-secondary:active,
.uk-card-secondary.uk-card-body .uk-button-secondary.uk-active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-secondary.uk-active,
.uk-overlay-primary .uk-button-secondary:active,
.uk-overlay-primary .uk-button-secondary.uk-active,
.ap-toolbar .uk-button-secondary:active,
.ap-toolbar .uk-button-secondary.uk-active {
  background-color: #ffffff;
  border-color: #ffffff;
}
.uk-light .uk-button-text,
.uk-section-primary:not(.uk-preserve-color) .uk-button-text,
.uk-section-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-primary:not(.uk-preserve-color) .uk-button-text,
.uk-tile-secondary:not(.uk-preserve-color) .uk-button-text,
.uk-card-primary.uk-card-body .uk-button-text,
.uk-card-primary > :not([class*='uk-card-media']) .uk-button-text,
.uk-card-secondary.uk-card-body .uk-button-text,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-button-text,
.uk-overlay-primary .uk-button-text,
.ap-toolbar .uk-button-text {
  color: #ffffff;
}
.uk-light .uk-totop:active,
.uk-section-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-section-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-primary:not(.uk-preserve-color) .uk-totop:active,
.uk-tile-secondary:not(.uk-preserve-color) .uk-totop:active,
.uk-card-primary.uk-card-body .uk-totop:active,
.uk-card-primary > :not([class*='uk-card-media']) .uk-totop:active,
.uk-card-secondary.uk-card-body .uk-totop:active,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-totop:active,
.uk-overlay-primary .uk-totop:active,
.ap-toolbar .uk-totop:active {
  color: #ffffff;
  background-color: transparent;
}
.uk-light .uk-marker,
.uk-section-primary:not(.uk-preserve-color) .uk-marker,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker,
.uk-card-primary.uk-card-body .uk-marker,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker,
.uk-card-secondary.uk-card-body .uk-marker,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker,
.uk-overlay-primary .uk-marker,
.ap-toolbar .uk-marker {
  background: #f2f5fa;
  color: #666;
}
.uk-light .uk-marker:hover,
.uk-light .uk-marker:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-marker:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-marker:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-marker:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-marker:focus,
.uk-card-primary.uk-card-body .uk-marker:hover,
.uk-card-primary.uk-card-body .uk-marker:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-marker:focus,
.uk-card-secondary.uk-card-body .uk-marker:hover,
.uk-card-secondary.uk-card-body .uk-marker:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-marker:focus,
.uk-overlay-primary .uk-marker:hover,
.uk-overlay-primary .uk-marker:focus,
.ap-toolbar .uk-marker:hover,
.ap-toolbar .uk-marker:focus {
  color: #666;
}
.uk-light .uk-badge,
.uk-section-primary:not(.uk-preserve-color) .uk-badge,
.uk-section-secondary:not(.uk-preserve-color) .uk-badge,
.uk-tile-primary:not(.uk-preserve-color) .uk-badge,
.uk-tile-secondary:not(.uk-preserve-color) .uk-badge,
.uk-card-primary.uk-card-body .uk-badge,
.uk-card-primary > :not([class*='uk-card-media']) .uk-badge,
.uk-card-secondary.uk-card-body .uk-badge,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-badge,
.uk-overlay-primary .uk-badge,
.ap-toolbar .uk-badge {
  background-color: #ffffff;
  color: #333;
}
.uk-light .uk-label,
.uk-section-primary:not(.uk-preserve-color) .uk-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-label,
.uk-card-primary.uk-card-body .uk-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-label,
.uk-card-secondary.uk-card-body .uk-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-label,
.uk-overlay-primary .uk-label,
.ap-toolbar .uk-label {
  background-color: #ffffff;
}
.uk-light .uk-article-title,
.uk-section-primary:not(.uk-preserve-color) .uk-article-title,
.uk-section-secondary:not(.uk-preserve-color) .uk-article-title,
.uk-tile-primary:not(.uk-preserve-color) .uk-article-title,
.uk-tile-secondary:not(.uk-preserve-color) .uk-article-title,
.uk-card-primary.uk-card-body .uk-article-title,
.uk-card-primary > :not([class*='uk-card-media']) .uk-article-title,
.uk-card-secondary.uk-card-body .uk-article-title,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-article-title,
.uk-overlay-primary .uk-article-title,
.ap-toolbar .uk-article-title {
  color: #ffffff;
}
.uk-light .uk-nav-default > li > a:hover,
.uk-light .uk-nav-default > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:hover,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li > a:focus,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-primary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:hover,
.uk-card-secondary.uk-card-body .uk-nav-default > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:hover,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li > a:focus,
.uk-overlay-primary .uk-nav-default > li > a:hover,
.uk-overlay-primary .uk-nav-default > li > a:focus,
.ap-toolbar .uk-nav-default > li > a:hover,
.ap-toolbar .uk-nav-default > li > a:focus {
  color: rgba(197, 57, 15, 0.7);
  background-color: transparent;
}
.uk-light .uk-nav-default > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-default > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default > li.uk-active > a,
.uk-overlay-primary .uk-nav-default > li.uk-active > a,
.ap-toolbar .uk-nav-default > li.uk-active > a {
  color: #ffffff;
  background-color: transparent;
}
.uk-light .uk-nav-default .uk-nav-header,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-default .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-default .uk-nav-header,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-default .uk-nav-header,
.uk-overlay-primary .uk-nav-default .uk-nav-header,
.ap-toolbar .uk-nav-default .uk-nav-header {
  color: #ffffff;
}
.uk-light .uk-nav-primary > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-nav-primary > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary > li.uk-active > a,
.uk-overlay-primary .uk-nav-primary > li.uk-active > a,
.ap-toolbar .uk-nav-primary > li.uk-active > a {
  color: #ffffff;
}
.uk-light .uk-nav-primary .uk-nav-header,
.uk-section-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-section-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-primary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-tile-secondary:not(.uk-preserve-color) .uk-nav-primary .uk-nav-header,
.uk-card-primary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-primary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-header,
.uk-card-secondary.uk-card-body .uk-nav-primary .uk-nav-header,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-nav-primary .uk-nav-header,
.uk-overlay-primary .uk-nav-primary .uk-nav-header,
.ap-toolbar .uk-nav-primary .uk-nav-header {
  color: #ffffff;
}
.uk-light .uk-navbar-nav > li > a::before,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a::before,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a::before,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a::before,
.uk-overlay-primary .uk-navbar-nav > li > a::before,
.ap-toolbar .uk-navbar-nav > li > a::before {
  background-color: transparent;
}
.uk-light .uk-navbar-nav > li:hover > a,
.uk-light .uk-navbar-nav > li > a:focus,
.uk-light .uk-navbar-nav > li > a.uk-open,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li:hover > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a:focus,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li > a.uk-open,
.uk-card-primary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-primary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li:hover > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:focus,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li:hover > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a:focus,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li > a.uk-open,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li:hover > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a:focus,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li > a.uk-open,
.uk-overlay-primary .uk-navbar-nav > li:hover > a,
.uk-overlay-primary .uk-navbar-nav > li > a:focus,
.uk-overlay-primary .uk-navbar-nav > li > a.uk-open,
.ap-toolbar .uk-navbar-nav > li:hover > a,
.ap-toolbar .uk-navbar-nav > li > a:focus,
.ap-toolbar .uk-navbar-nav > li > a.uk-open {
  color: #ffffff;
}
.uk-light .uk-navbar-nav > li.uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a,
.uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a,
.uk-overlay-primary .uk-navbar-nav > li.uk-active > a,
.ap-toolbar .uk-navbar-nav > li.uk-active > a {
  color: #ffffff;
}
.uk-light .uk-navbar-nav > li.uk-active > a::before,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-nav > li.uk-active > a::before,
.uk-card-primary.uk-card-body .uk-navbar-nav > li.uk-active > a::before,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a::before,
.uk-card-secondary.uk-card-body .uk-navbar-nav > li.uk-active > a::before,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-nav > li.uk-active > a::before,
.uk-overlay-primary .uk-navbar-nav > li.uk-active > a::before,
.ap-toolbar .uk-navbar-nav > li.uk-active > a::before {
  background-color: #238bcd;
}
.uk-light .uk-navbar-toggle,
.uk-section-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-section-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-primary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-tile-secondary:not(.uk-preserve-color) .uk-navbar-toggle,
.uk-card-primary.uk-card-body .uk-navbar-toggle,
.uk-card-primary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-card-secondary.uk-card-body .uk-navbar-toggle,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-navbar-toggle,
.uk-overlay-primary .uk-navbar-toggle,
.ap-toolbar .uk-navbar-toggle {
  color: #ffffff;
}
.uk-light .uk-subnav > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav > .uk-active > a,
.uk-overlay-primary .uk-subnav > .uk-active > a,
.ap-toolbar .uk-subnav > .uk-active > a {
  color: #ffffff;
}
.uk-light .uk-subnav-pill > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-subnav-pill > .uk-active > a,
.uk-card-primary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-subnav-pill > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-subnav-pill > .uk-active > a,
.uk-overlay-primary .uk-subnav-pill > .uk-active > a,
.ap-toolbar .uk-subnav-pill > .uk-active > a {
  background-color: #ffffff;
  box-shadow: none;
}
.uk-light .uk-tab > .uk-active > a,
.uk-section-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-section-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-primary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-tile-secondary:not(.uk-preserve-color) .uk-tab > .uk-active > a,
.uk-card-primary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-primary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-card-secondary.uk-card-body .uk-tab > .uk-active > a,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-tab > .uk-active > a,
.uk-overlay-primary .uk-tab > .uk-active > a,
.ap-toolbar .uk-tab > .uk-active > a {
  color: #ffffff;
  border-color: #ffffff;
}
.uk-light .uk-dotnav > .uk-active > *,
.uk-section-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-section-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-primary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-tile-secondary:not(.uk-preserve-color) .uk-dotnav > .uk-active > *,
.uk-card-primary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-primary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-card-secondary.uk-card-body .uk-dotnav > .uk-active > *,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-dotnav > .uk-active > *,
.uk-overlay-primary .uk-dotnav > .uk-active > *,
.ap-toolbar .uk-dotnav > .uk-active > * {
  background-color: #ffffff;
  border-color: transparent;
}
.uk-light .uk-countdown-number,
.uk-light .uk-countdown-separator,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-number,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-number,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-number,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-number,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-separator,
.uk-card-primary.uk-card-body .uk-countdown-number,
.uk-card-primary.uk-card-body .uk-countdown-separator,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-number,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-separator,
.uk-card-secondary.uk-card-body .uk-countdown-number,
.uk-card-secondary.uk-card-body .uk-countdown-separator,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-number,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-separator,
.uk-overlay-primary .uk-countdown-number,
.uk-overlay-primary .uk-countdown-separator,
.ap-toolbar .uk-countdown-number,
.ap-toolbar .uk-countdown-separator {
  color: #ffffff;
}
.uk-light .uk-countdown-label,
.uk-section-primary:not(.uk-preserve-color) .uk-countdown-label,
.uk-section-secondary:not(.uk-preserve-color) .uk-countdown-label,
.uk-tile-primary:not(.uk-preserve-color) .uk-countdown-label,
.uk-tile-secondary:not(.uk-preserve-color) .uk-countdown-label,
.uk-card-primary.uk-card-body .uk-countdown-label,
.uk-card-primary > :not([class*='uk-card-media']) .uk-countdown-label,
.uk-card-secondary.uk-card-body .uk-countdown-label,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-countdown-label,
.uk-overlay-primary .uk-countdown-label,
.ap-toolbar .uk-countdown-label {
  color: #ffffff;
}
.uk-light .uk-text-lead,
.uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-primary:not(.uk-preserve-color) .uk-text-lead,
.uk-tile-secondary:not(.uk-preserve-color) .uk-text-lead,
.uk-card-primary.uk-card-body .uk-text-lead,
.uk-card-primary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-card-secondary.uk-card-body .uk-text-lead,
.uk-card-secondary > :not([class*='uk-card-media']) .uk-text-lead,
.uk-overlay-primary .uk-text-lead,
.ap-toolbar .uk-text-lead {
  color: #ffffff;
}
/* Header
   ========================================================================== */
/*
   * Header
   */
/*
   * Headerbars
   */
.ap-headerbar-top {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}
.ap-headerbar-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff;
}
.ap-header .uk-navbar-nav .menu-item a {
  position: relative;
}
.ap-header .uk-navbar-nav .menu-item a:hover,
.ap-header .uk-navbar-nav .uk-active a {
  font-weight: bolder;
}
.ap-header .uk-navbar-nav .menu-item a:hover::before,
.ap-header .uk-navbar-nav .uk-active a::before {
  right: 15px;
  display: block;
}
.ap-header-transparent {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
}
.ap-header-transparent .uk-navbar-nav .menu-item a {
  position: relative;
  color: #fff;
}
.ap-header-transparent .uk-navbar-nav .menu-item a:hover::before,
.ap-header-transparent .uk-navbar-nav .uk-active a::before {
  background-color: #fff;
}
.uk-navbar-transparent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 80px;
  z-index: 100;
  transition: background-color 0.3s ease-in;
}
.uk-navbar-transparent.uk-sticky-below {
  z-index: 1000;
}
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li.uk-active > a,
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a:hover {
  color: #292929;
}
.uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a {
  color: #4f5260;
}
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below,
.uk-section-secondary .uk-navbar-container:not(.uk-navbar-transparent) {
  background: rgba(170, 170, 170, 0.94);
}
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a,
.uk-section-secondary .uk-navbar-transparent.uk-sticky-below .uk-navbar-nav > li > a:hover {
  color: #fff;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #238bcd;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f2f5fa;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #238bcd;
}
.uk-navbar-container:not(.uk-navbar-transparent) {
  background: transparent;
}
.uk-navbar-sticky {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}
.uk-navbar-nav > li > a::before {
  content: '';
  display: none;
  position: absolute;
  bottom: 24px;
  height: 1px;
  background-color: #00a0de;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transition-property: background-color, border-color, box-shadow, height, right;
  transition-property: background-color, border-color, box-shadow, height, right;
  left: 15px;
  right: calc(77%);
}
.category .uk-pagination li.uk-active,
.ap-pagination li.uk-active,
.dynamic-pagination li.uk-active,
.category .uk-pagination li.active,
.ap-pagination li.active,
.dynamic-pagination li.active {
  background-color: #238bcd;
  border-color: #238bcd;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #238bcd;
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
/* mobile */
@media (max-width: 640px) {
  .uk-padding {
    padding: 14px;
  }
  .uk-padding-small {
    padding: 12px 15px 8px;
  }
  * + .uk-margin-medium {
    margin-top: 12px !important;
  }
  .uk-margin-medium {
    margin-bottom: 16px;
  }
  .uk-button {
    padding: 0 12px;
    line-height: 30px;
  }
  .uk-card-default .uk-card-title,
  .uk-card-title {
    font-size: 1rem;
  }
  .uk-card-body {
    padding: 10px;
  }
  .uk-tile-large {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .uk-heading-primary,
  .uk-heading-hero,
  .uk-h1,
  h1 {
    font-size: 1.75rem;
  }
  .uk-h2,
  h2 {
    font-size: 1.25rem;
  }
  .uk-h3,
  h3 {
    font-size: 1.125rem;
  }
  .uk-h4,
  h4 {
    font-size: .875rem;
  }
  .uk-h5,
  h5,
  .uk-h6,
  h6 {
    font-size: .75rem;
  }
  .uk-margin {
    margin-bottom: 14px;
  }
  * + .uk-margin {
    margin-top: 14px!important;
  }
  .uk-grid {
    margin-left: -6px;
  }
  .uk-grid > * {
    padding-left: 6px;
  }
  * + .uk-grid-margin,
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin {
    margin-top: 12px;
  }
  .uk-grid + .uk-grid-collapse,
  .uk-grid-collapse > .uk-grid-margin {
    margin-top: 0;
  }
  .uk-grid-collapse > * {
    padding-left: 0;
  }
  .uk-grid-collapse {
    margin-left: 0;
  }
  .uk-card-small .uk-card-body,
  .uk-card-small.uk-card-body {
    padding: 6px;
  }
  .uk-section {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .uk-section-xsmall {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .uk-section-small {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .uk-margin-large-top {
    margin-top: 26px !important;
  }
  .uk-margin-large {
    margin-bottom: 26px;
  }
  .ap-pagination li,
  .dynamic-pagination li {
    height: 24px;
  }
  .dynamic-pagination li a {
    padding: 0 2px;
    line-height: 24px;
    min-width: 24px;
    font-size: 12px;
  }
}
.preview .uk-section-secondary .uk-button-primary:hover {
  background-color: #1c6da1;
}
.ap-list-filter dd a.active {
  background-color: #238bcd;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #238bcd;
}
.category li a.active {
  color: #238bcd;
}
.uk-lightbox-items > * > video {
  width: 80%;
}
/* 兼容uk-heading-primary */
@media (min-width: 1200px) {
  .uk-heading-primary {
    font-size: 3.75rem;
    line-height: 1.1;
  }
}
.uk-list ul {
  padding-left: 10px;
}
.onepage-pagination li a.active:before {
  background: #238bcd;
}
.fr-text-bordered {
  padding-top: 6px;
  padding-bottom: 6px;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.fr-text-uppercase {
  text-transform: uppercase;
}
.param-field .param-tag {
  color: #238bcd;
  border: 1px solid rgba(35, 139, 205, 0.2);
}
form .step .step-bg-progress,
form .add-file .file-btn,
form .step-btns a,
form .step .ui-step.active .ui-step-num {
  background: #238bcd;
}
form .step .ui-step.active .ui-step-title {
  color: #238bcd;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #238bcd;
  background-color: #238bcd;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #238bcd;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #238bcd;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #238bcd;
  color: #238bcd;
}
.btn-effect-2:hover {
  background-color: #238bcd;
}
.uk-button.btn-effect-5 {
  background-color: #238bcd;
  box-shadow: 0 0 15px rgba(35, 139, 205, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #238bcd;
}
.header-effect-6 [data-item='title']::before {
  background-color: #238bcd;
}
#a11b4ac404afdd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a11b4ac404afdd3 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a11b4ac404afdd3 .ap-icon {
  margin-right: 6px;
}
#a11b4ac404afdd3 .indicator {
  margin-left: 4px;
}
#a11b4ac404afdd3 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a11b4ac404afdd3 .menu-list li:hover > a,
#a11b4ac404afdd3 .menu-list li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list li.active > a {
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list ul,
#a11b4ac404afdd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a11b4ac404afdd3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a11b4ac404afdd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11b4ac404afdd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11b4ac404afdd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0826a72c8aaa71 > .ele-wrap {background-color: rgba(0, 0, 0, 0);background-image: url(/resources/upload/ac8a5af7bba765c/1682056650711.jpeg);background-size: cover;background-repeat: no-repeat;background-position: top center;}#a8903a06d6ab6ac > .ele-wrap {background-color: rgba(138, 0, 0, 1);}#a5630a8212a1083 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(0, 0, 0, 1);}#a5814af294a6879 , #a5814af294a6879 a{color: rgba(138, 0, 0, 1);}#af92ca0547a9755 a, #af92ca0547a9755 {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;color: rgba(138, 0, 0, 1);}#af92ca0547a9755 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(138, 0, 0, 1);}#ace87abb9eacaff a, #ace87abb9eacaff {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(138, 0, 0, 1);}#a73cfa729daa305 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a9be7af5a4a88fc .a0011ad50ca4643 {
  overflow: hidden;
}
#a9be7af5a4a88fc .a0011ad50ca4643 , #a9be7af5a4a88fc .a0011ad50ca4643 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a9be7af5a4a88fc .a0011ad50ca4643:hover , #a9be7af5a4a88fc .a0011ad50ca4643 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a9be7af5a4a88fc .aa84fa9310a7182 {
  overflow: hidden;
}
#a9be7af5a4a88fc .aa84fa9310a7182 , #a9be7af5a4a88fc .aa84fa9310a7182 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a9be7af5a4a88fc .a0323a4e58a570f  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a9be7af5a4a88fc .a8b81a786baae58 , #a9be7af5a4a88fc .a8b81a786baae58 a{color: rgba(146, 143, 143, 1);}#a9be7af5a4a88fc .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a9be7af5a4a88fc .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a9be7af5a4a88fc .uk-position-center-left-out {
    left: -30px;
  }
  #a9be7af5a4a88fc .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a20b3ae864a971f .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a2d23a36ecae83c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a0ebeabafea42ba > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaff3a0fa3a3646 a, #aaff3a0fa3a3646 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#aaff3a0fa3a3646 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#af4d8a4881a8973 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab54da1181aa840 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#ab54da1181aa840 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#aea7ba2e7dac74e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa758a1f3eab1f5 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#aa758a1f3eab1f5 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a3dc7a9d64a8124 .uk-grid {
  margin-left: -15px;
}
#a3dc7a9d64a8124 .uk-grid > * {
  padding-left: 15px;
}
#a3dc7a9d64a8124 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3dc7a9d64a8124 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a3dc7a9d64a8124 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a3dc7a9d64a8124 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a3dc7a9d64a8124 .article .info p {
  margin: 10px 0 10px;
}
#a3dc7a9d64a8124 .article svg {
  fill: currentColor;
}
#a3dc7a9d64a8124 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a3dc7a9d64a8124 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a3dc7a9d64a8124 .article.list-icon .info {
  padding-left: 25px;
}
#a3dc7a9d64a8124 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a3dc7a9d64a8124 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a3dc7a9d64a8124 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a3dc7a9d64a8124 .article:hover .title {
  color: #238bcd;
}
#a3dc7a9d64a8124 .article:hover .datetime {
  color: #238bcd;
}
#a3dc7a9d64a8124 .article:hover .category {
  color: #b6b6b6;
}
#a3dc7a9d64a8124 .article:hover .abstract {
  color: #b6b6b6;
}
#a3dc7a9d64a8124 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a3dc7a9d64a8124 .article:hover .list_icon {
  color: #b6b6b6;
}
#a896daa45aa5eaf > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1a90a086fa1801 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a1a90a086fa1801 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#afa1bab6ddafdcd .uk-grid {
  margin-left: -15px;
}
#afa1bab6ddafdcd .uk-grid > * {
  padding-left: 15px;
}
#afa1bab6ddafdcd .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#afa1bab6ddafdcd .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#afa1bab6ddafdcd .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#afa1bab6ddafdcd .article .info {
  padding: 8px 10px;
  position: relative;
}
#afa1bab6ddafdcd .article .info p {
  margin: 10px 0 10px;
}
#afa1bab6ddafdcd .article svg {
  fill: currentColor;
}
#afa1bab6ddafdcd .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#afa1bab6ddafdcd .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#afa1bab6ddafdcd .article.list-icon .info {
  padding-left: 25px;
}
#afa1bab6ddafdcd .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#afa1bab6ddafdcd .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#afa1bab6ddafdcd .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#afa1bab6ddafdcd .article:hover .title {
  color: #238bcd;
}
#afa1bab6ddafdcd .article:hover .datetime {
  color: #238bcd;
}
#afa1bab6ddafdcd .article:hover .category {
  color: #b6b6b6;
}
#afa1bab6ddafdcd .article:hover .abstract {
  color: #b6b6b6;
}
#afa1bab6ddafdcd .article:hover .btn_icon {
  color: #b6b6b6;
}
#afa1bab6ddafdcd .article:hover .list_icon {
  color: #b6b6b6;
}
#a1b0ea67a7adcc7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a664aabb87afd20 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a664aabb87afd20 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#aad54a2ca3a13af .uk-grid {
  margin-left: -15px;
}
#aad54a2ca3a13af .uk-grid > * {
  padding-left: 15px;
}
#aad54a2ca3a13af .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aad54a2ca3a13af .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#aad54a2ca3a13af .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#aad54a2ca3a13af .article .info {
  padding: 8px 10px;
  position: relative;
}
#aad54a2ca3a13af .article .info p {
  margin: 10px 0 10px;
}
#aad54a2ca3a13af .article svg {
  fill: currentColor;
}
#aad54a2ca3a13af .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#aad54a2ca3a13af .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#aad54a2ca3a13af .article.list-icon .info {
  padding-left: 25px;
}
#aad54a2ca3a13af .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#aad54a2ca3a13af .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#aad54a2ca3a13af .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#aad54a2ca3a13af .article:hover .title {
  color: #238bcd;
}
#aad54a2ca3a13af .article:hover .datetime {
  color: #238bcd;
}
#aad54a2ca3a13af .article:hover .category {
  color: #b6b6b6;
}
#aad54a2ca3a13af .article:hover .abstract {
  color: #b6b6b6;
}
#aad54a2ca3a13af .article:hover .btn_icon {
  color: #b6b6b6;
}
#aad54a2ca3a13af .article:hover .list_icon {
  color: #b6b6b6;
}
#a62dea99f1a477d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac174a05d4af667 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#ac174a05d4af667 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#ae44fa5a32a98b2 .a1502a8de4ac8ef {
  overflow: hidden;
}
#ae44fa5a32a98b2 .a1502a8de4ac8ef , #ae44fa5a32a98b2 .a1502a8de4ac8ef > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;}#ae44fa5a32a98b2 .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ae44fa5a32a98b2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae44fa5a32a98b2 .uk-position-center-left-out {
    left: -30px;
  }
  #ae44fa5a32a98b2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab1afad8d0a4db7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acbeead68ea48a3 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#acbeead68ea48a3 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a13a2a1685a5089 .uk-grid {
  margin-left: -15px;
}
#a13a2a1685a5089 .uk-grid > * {
  padding-left: 15px;
}
#a13a2a1685a5089 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a13a2a1685a5089 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a13a2a1685a5089 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a13a2a1685a5089 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a13a2a1685a5089 .article .info p {
  margin: 10px 0 10px;
}
#a13a2a1685a5089 .article svg {
  fill: currentColor;
}
#a13a2a1685a5089 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a13a2a1685a5089 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a13a2a1685a5089 .article.list-icon .info {
  padding-left: 25px;
}
#a13a2a1685a5089 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a13a2a1685a5089 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a13a2a1685a5089 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a13a2a1685a5089 .article:hover .title {
  color: #238bcd;
}
#a13a2a1685a5089 .article:hover .datetime {
  color: #238bcd;
}
#a13a2a1685a5089 .article:hover .category {
  color: #b6b6b6;
}
#a13a2a1685a5089 .article:hover .abstract {
  color: #b6b6b6;
}
#a13a2a1685a5089 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a13a2a1685a5089 .article:hover .list_icon {
  color: #b6b6b6;
}
#ad9faa7ed7ad646 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aecd7a049fa50e8 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a0f01ae69da7f9e > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a3c2dabb26a66e9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3c2dabb26a66e9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3c2dabb26a66e9 .ap-icon {
  margin-right: 6px;
}
#a3c2dabb26a66e9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a3c2dabb26a66e9 .menu-list > li.icon-bottom > a,
#a3c2dabb26a66e9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3c2dabb26a66e9 .menu-list > li.icon-bottom > a .ap-icon,
#a3c2dabb26a66e9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3c2dabb26a66e9 .menu-list > li.icon-bottom > a .ap-icon svg,
#a3c2dabb26a66e9 .menu-list > li.icon-top > a .ap-icon svg,
#a3c2dabb26a66e9 .menu-list > li.icon-bottom > a .ap-icon img,
#a3c2dabb26a66e9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3c2dabb26a66e9 .menu-list > li.icon-right > a .ap-icon,
#a3c2dabb26a66e9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3c2dabb26a66e9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3c2dabb26a66e9 .menu-list > li:hover > a,
#a3c2dabb26a66e9 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3c2dabb26a66e9 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3c2dabb26a66e9 .menu-list ul,
#a3c2dabb26a66e9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3c2dabb26a66e9 .menu-list ul {
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}
#a3c2dabb26a66e9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3c2dabb26a66e9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3c2dabb26a66e9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a6b10a5b16a3438 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5c75a3b74a21cb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#aa7daae2e7a71f7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a1178abd91a1719 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1599a9ca1ac925 a, #a1599a9ca1ac925 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a1599a9ca1ac925 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ab641a3904a60bf .ad498a3908a831f {
  overflow: hidden;
}
#ab641a3904a60bf .ad498a3908a831f , #ab641a3904a60bf .ad498a3908a831f > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#ab641a3904a60bf .ad498a3908a831f:hover , #ab641a3904a60bf .ad498a3908a831f *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#ab641a3904a60bf .a45c4a09e4ae9a1 {
  overflow: hidden;
}
#ab641a3904a60bf .a45c4a09e4ae9a1 , #ab641a3904a60bf .a45c4a09e4ae9a1 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(155, 155, 155, 1);}#ab641a3904a60bf .a2e25a8128a2b8f  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#ab641a3904a60bf .a8895a5d9ea51eb , #ab641a3904a60bf .a8895a5d9ea51eb a{color: rgba(146, 143, 143, 1);}#ab641a3904a60bf .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#ab641a3904a60bf .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab641a3904a60bf .uk-position-center-left-out {
    left: -30px;
  }
  #ab641a3904a60bf .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aaba8a41e5a95d3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a34c5abe64aa1ab > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#aac47a8597a28b9 a, #aac47a8597a28b9 {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a834eab413a66df .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a5cbaadfc5a5e65 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a7545aab38a60a3 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6c27a02c7ad7f1 a, #a6c27a02c7ad7f1 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a6c27a02c7ad7f1 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a16a2ad8d6a8ae0 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaa30a8016af402 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#aaa30a8016af402 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a69a4a5b8eaff48 {
  overflow: hidden;
}
#a69a4a5b8eaff48 , #a69a4a5b8eaff48 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: right;font-family: inherit;color: rgba(51, 51, 51, 1);}#a3fc4a65f6aa248 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2461aad1ea2759 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a2461aad1ea2759 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a0ab1a4f64a1a0e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a46efa576fa4036 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a46efa576fa4036 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#ad795ad873ac814 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a944aac605a2fa7 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a22eeab334a58e3 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a6a77a3ed9a6209 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6a77a3ed9a6209 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6a77a3ed9a6209 .ap-icon {
  margin-right: 6px;
}
#a6a77a3ed9a6209 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#a6a77a3ed9a6209 .menu-list > li.icon-bottom > a,
#a6a77a3ed9a6209 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6a77a3ed9a6209 .menu-list > li.icon-bottom > a .ap-icon,
#a6a77a3ed9a6209 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6a77a3ed9a6209 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6a77a3ed9a6209 .menu-list > li.icon-top > a .ap-icon svg,
#a6a77a3ed9a6209 .menu-list > li.icon-bottom > a .ap-icon img,
#a6a77a3ed9a6209 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6a77a3ed9a6209 .menu-list > li.icon-right > a .ap-icon,
#a6a77a3ed9a6209 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6a77a3ed9a6209 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6a77a3ed9a6209 .menu-list > li:hover > a,
#a6a77a3ed9a6209 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a6a77a3ed9a6209 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a6a77a3ed9a6209 .menu-list ul,
#a6a77a3ed9a6209 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6a77a3ed9a6209 .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#a6a77a3ed9a6209 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6a77a3ed9a6209 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6a77a3ed9a6209 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a924aaae0bae9fc > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa722adb17a0f27 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a9b4aa6995aaa1f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aabd0adb6aada83 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6fb3a2beaa5780 a, #a6fb3a2beaa5780 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a6fb3a2beaa5780 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ad697afa61aab63 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa94aa45afaec84 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#aa94aa45afaec84 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a5945af19dab2d1 {
  overflow: hidden;
}
#a5945af19dab2d1 , #a5945af19dab2d1 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: right;font-family: inherit;color: rgba(51, 51, 51, 1);}#afc7ca2a39abac9 .uk-grid {
  margin-left: -15px;
}
#afc7ca2a39abac9 .uk-grid > * {
  padding-left: 15px;
}
#afc7ca2a39abac9 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#afc7ca2a39abac9 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#afc7ca2a39abac9 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#afc7ca2a39abac9 .article .info {
  padding: 8px 10px;
  position: relative;
}
#afc7ca2a39abac9 .article .info p {
  margin: 10px 0 10px;
}
#afc7ca2a39abac9 .article svg {
  fill: currentColor;
}
#afc7ca2a39abac9 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#afc7ca2a39abac9 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#afc7ca2a39abac9 .article.list-icon .info {
  padding-left: 25px;
}
#afc7ca2a39abac9 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#afc7ca2a39abac9 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#afc7ca2a39abac9 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#afc7ca2a39abac9 .article:hover .title {
  color: #238bcd;
}
#afc7ca2a39abac9 .article:hover .datetime {
  color: #238bcd;
}
#afc7ca2a39abac9 .article:hover .category {
  color: #b6b6b6;
}
#afc7ca2a39abac9 .article:hover .abstract {
  color: #b6b6b6;
}
#afc7ca2a39abac9 .article:hover .btn_icon {
  color: #b6b6b6;
}
#afc7ca2a39abac9 .article:hover .list_icon {
  color: #b6b6b6;
}
#abadea2adeaccff .uk-grid {
  margin-left: -15px;
}
#abadea2adeaccff .uk-grid > * {
  padding-left: 15px;
}
#abadea2adeaccff .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#abadea2adeaccff .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#abadea2adeaccff .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#abadea2adeaccff .article .info {
  padding: 8px 10px;
  position: relative;
}
#abadea2adeaccff .article .info p {
  margin: 10px 0 10px;
}
#abadea2adeaccff .article svg {
  fill: currentColor;
}
#abadea2adeaccff .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#abadea2adeaccff .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#abadea2adeaccff .article.list-icon .info {
  padding-left: 25px;
}
#abadea2adeaccff .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#abadea2adeaccff .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#abadea2adeaccff .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#abadea2adeaccff .article:hover .title {
  color: #238bcd;
}
#abadea2adeaccff .article:hover .datetime {
  color: #238bcd;
}
#abadea2adeaccff .article:hover .category {
  color: #b6b6b6;
}
#abadea2adeaccff .article:hover .abstract {
  color: #b6b6b6;
}
#abadea2adeaccff .article:hover .btn_icon {
  color: #b6b6b6;
}
#abadea2adeaccff .article:hover .list_icon {
  color: #b6b6b6;
}
#a8879abd1cabc6c .uk-grid {
  margin-left: -15px;
}
#a8879abd1cabc6c .uk-grid > * {
  padding-left: 15px;
}
#a8879abd1cabc6c .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8879abd1cabc6c .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a8879abd1cabc6c .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a8879abd1cabc6c .article .info {
  padding: 8px 10px;
  position: relative;
}
#a8879abd1cabc6c .article .info p {
  margin: 10px 0 10px;
}
#a8879abd1cabc6c .article svg {
  fill: currentColor;
}
#a8879abd1cabc6c .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a8879abd1cabc6c .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a8879abd1cabc6c .article.list-icon .info {
  padding-left: 25px;
}
#a8879abd1cabc6c .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a8879abd1cabc6c .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a8879abd1cabc6c .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a8879abd1cabc6c .article:hover .title {
  color: #238bcd;
}
#a8879abd1cabc6c .article:hover .datetime {
  color: #238bcd;
}
#a8879abd1cabc6c .article:hover .category {
  color: #b6b6b6;
}
#a8879abd1cabc6c .article:hover .abstract {
  color: #b6b6b6;
}
#a8879abd1cabc6c .article:hover .btn_icon {
  color: #b6b6b6;
}
#a8879abd1cabc6c .article:hover .list_icon {
  color: #b6b6b6;
}
#a178fa296aa456d {
  overflow: hidden;
  pointer-events: none;
}
#a178fa296aa456d > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a178fa296aa456d > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a178fa296aa456d > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a178fa296aa456d > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a178fa296aa456d > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a178fa296aa456d > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav,
#a178fa296aa456d > .tab-nav,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav,
#a178fa296aa456d > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav-horizontal,
#a178fa296aa456d > .tab-nav-horizontal,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a178fa296aa456d > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a178fa296aa456d > .tab-nav-horizontal::-webkit-scrollbar,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a178fa296aa456d > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a178fa296aa456d > .tab-nav-horizontal.tagScroll,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a178fa296aa456d > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a178fa296aa456d > .tab-nav-horizontal.tagScroll li a,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a178fa296aa456d > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav a,
#a178fa296aa456d > .tab-nav a,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a178fa296aa456d > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav li a,
#a178fa296aa456d > .tab-nav li a,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a178fa296aa456d > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav li a svg,
#a178fa296aa456d > .tab-nav li a svg,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a178fa296aa456d > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav li a .ap_icon,
#a178fa296aa456d > .tab-nav li a .ap_icon,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a178fa296aa456d > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav li a:hover,
#a178fa296aa456d > .tab-nav li a:hover,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a178fa296aa456d > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#a178fa296aa456d > .tab-wrap > div > .tab-nav li.uk-active a,
#a178fa296aa456d > .tab-nav li.uk-active a,
#a178fa296aa456d > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a178fa296aa456d > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#a178fa296aa456d .layout-left li,
#a178fa296aa456d .layout-center li,
#a178fa296aa456d .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a178fa296aa456d .layout-left li a,
#a178fa296aa456d .layout-center li a,
#a178fa296aa456d .layout-right li a {
  height: 100%;
}
#a178fa296aa456d > .tab-tabs .layout-left {
  text-align: left;
}
#a178fa296aa456d > .tab-tabs .layout-center {
  text-align: center;
}
#a178fa296aa456d > .tab-tabs .layout-right {
  text-align: right;
}
#a178fa296aa456d .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#a178fa296aa456d .tab-content-wrap {
  background-color: transparent;
}
#a178fa296aa456d .tab-contents,
#a178fa296aa456d .tab-contents-wrap {
  pointer-events: none;
}
#a178fa296aa456d .tab-content,
#a178fa296aa456d .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a178fa296aa456d .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a178fa296aa456d .tab-wrap .tab-contents {
  height: 100%;
}
#a178fa296aa456d .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a178fa296aa456d .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a178fa296aa456d .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a18eaa037dac263 .aed31a6e26a9376 {
  overflow: hidden;
}
#a18eaa037dac263 .aed31a6e26a9376 , #a18eaa037dac263 .aed31a6e26a9376 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 17px;text-align: center;font-family: inherit;color: rgba(34, 34, 34, 1);}#a18eaa037dac263 .aed31a6e26a9376:hover , #a18eaa037dac263 .aed31a6e26a9376 *:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 122, 195, 1);}#a18eaa037dac263 .a4caca6265a42e3 > .ele-wrap {background-color: rgba(238, 238, 238, 0.8);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a18eaa037dac263 .adc33a4776afcd0 {
  overflow: hidden;
}
#a18eaa037dac263 .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a18eaa037dac263 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a18eaa037dac263 .uk-position-center-left-out {
    left: -30px;
  }
  #a18eaa037dac263 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a9fefa7551a0571 .uk-grid {
  margin-left: -15px;
}
#a9fefa7551a0571 .uk-grid > * {
  padding-left: 15px;
}
#a9fefa7551a0571 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9fefa7551a0571 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a9fefa7551a0571 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a9fefa7551a0571 .article .info {
  padding: 5px 10px;
  position: relative;
}
#a9fefa7551a0571 .article .info p {
  margin: 10px 0 10px;
}
#a9fefa7551a0571 .article svg {
  fill: currentColor;
}
#a9fefa7551a0571 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 5px;
  width: 20px;
  color: #b4b4b4;
}
#a9fefa7551a0571 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 5px;
  color: #b4b4b4;
}
#a9fefa7551a0571 .article.list-icon .info {
  padding-left: 25px;
}
#a9fefa7551a0571 .article .datetime {
  position: absolute;
  right: 10px;
  top: 5px;
}
#a9fefa7551a0571 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#a9fefa7551a0571 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #9b9b9b;
}
#a9fefa7551a0571 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9fefa7551a0571 .article:hover .title {
  color: #238bcd;
}
#a9fefa7551a0571 .article:hover .datetime {
  color: #238bcd;
}
#a9fefa7551a0571 .article:hover .category {
  color: #b6b6b6;
}
#a9fefa7551a0571 .article:hover .abstract {
  color: #238bcd;
}
#a9fefa7551a0571 .article:hover .btn_icon {
  color: #238bcd;
}
#a9fefa7551a0571 .article:hover .list_icon {
  color: #238bcd;
}
#a68e2af1a9a2694 {
  overflow: hidden;
  pointer-events: none;
}
#a68e2af1a9a2694 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a68e2af1a9a2694 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a68e2af1a9a2694 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a68e2af1a9a2694 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a68e2af1a9a2694 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a68e2af1a9a2694 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav,
#a68e2af1a9a2694 > .tab-nav,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav-horizontal,
#a68e2af1a9a2694 > .tab-nav-horizontal,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a68e2af1a9a2694 > .tab-nav-horizontal::-webkit-scrollbar,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a68e2af1a9a2694 > .tab-nav-horizontal.tagScroll,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a68e2af1a9a2694 > .tab-nav-horizontal.tagScroll li a,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav a,
#a68e2af1a9a2694 > .tab-nav a,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav li a,
#a68e2af1a9a2694 > .tab-nav li a,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav li a svg,
#a68e2af1a9a2694 > .tab-nav li a svg,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a68e2af1a9a2694 > .tab-nav li a .ap_icon,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav li a:hover,
#a68e2af1a9a2694 > .tab-nav li a:hover,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#a68e2af1a9a2694 > .tab-wrap > div > .tab-nav li.uk-active a,
#a68e2af1a9a2694 > .tab-nav li.uk-active a,
#a68e2af1a9a2694 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a68e2af1a9a2694 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#a68e2af1a9a2694 .layout-left li,
#a68e2af1a9a2694 .layout-center li,
#a68e2af1a9a2694 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a68e2af1a9a2694 .layout-left li a,
#a68e2af1a9a2694 .layout-center li a,
#a68e2af1a9a2694 .layout-right li a {
  height: 100%;
}
#a68e2af1a9a2694 > .tab-tabs .layout-left {
  text-align: left;
}
#a68e2af1a9a2694 > .tab-tabs .layout-center {
  text-align: center;
}
#a68e2af1a9a2694 > .tab-tabs .layout-right {
  text-align: right;
}
#a68e2af1a9a2694 .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#a68e2af1a9a2694 .tab-content-wrap {
  background-color: transparent;
}
#a68e2af1a9a2694 .tab-contents,
#a68e2af1a9a2694 .tab-contents-wrap {
  pointer-events: none;
}
#a68e2af1a9a2694 .tab-content,
#a68e2af1a9a2694 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a68e2af1a9a2694 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a68e2af1a9a2694 .tab-wrap .tab-contents {
  height: 100%;
}
#a68e2af1a9a2694 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a68e2af1a9a2694 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a68e2af1a9a2694 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a5491a9a7fa6d71 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#af8b9a619fa0eff .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af8b9a619fa0eff .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af8b9a619fa0eff .ap-icon {
  margin-right: 6px;
}
#af8b9a619fa0eff .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#af8b9a619fa0eff .menu-list > li.icon-bottom > a,
#af8b9a619fa0eff .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af8b9a619fa0eff .menu-list > li.icon-bottom > a .ap-icon,
#af8b9a619fa0eff .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af8b9a619fa0eff .menu-list > li.icon-bottom > a .ap-icon svg,
#af8b9a619fa0eff .menu-list > li.icon-top > a .ap-icon svg,
#af8b9a619fa0eff .menu-list > li.icon-bottom > a .ap-icon img,
#af8b9a619fa0eff .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af8b9a619fa0eff .menu-list > li.icon-right > a .ap-icon,
#af8b9a619fa0eff .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af8b9a619fa0eff .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af8b9a619fa0eff .menu-list > li:hover > a,
#af8b9a619fa0eff .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af8b9a619fa0eff .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af8b9a619fa0eff .menu-list ul,
#af8b9a619fa0eff .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af8b9a619fa0eff .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#af8b9a619fa0eff .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af8b9a619fa0eff .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af8b9a619fa0eff .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3975aca94a8d44 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#a8d11a353baa1a3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8d11a353baa1a3 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8d11a353baa1a3 .ap-icon {
  margin-right: 6px;
}
#a8d11a353baa1a3 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a8d11a353baa1a3 .menu-list > li.icon-bottom > a,
#a8d11a353baa1a3 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8d11a353baa1a3 .menu-list > li.icon-bottom > a .ap-icon,
#a8d11a353baa1a3 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8d11a353baa1a3 .menu-list > li.icon-bottom > a .ap-icon svg,
#a8d11a353baa1a3 .menu-list > li.icon-top > a .ap-icon svg,
#a8d11a353baa1a3 .menu-list > li.icon-bottom > a .ap-icon img,
#a8d11a353baa1a3 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8d11a353baa1a3 .menu-list > li.icon-right > a .ap-icon,
#a8d11a353baa1a3 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8d11a353baa1a3 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8d11a353baa1a3 .menu-list > li:hover > a,
#a8d11a353baa1a3 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8d11a353baa1a3 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8d11a353baa1a3 .menu-list ul,
#a8d11a353baa1a3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8d11a353baa1a3 .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#a8d11a353baa1a3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8d11a353baa1a3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8d11a353baa1a3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a83aaa5fdcadb77 .uk-grid {
  margin-left: -15px;
}
#a83aaa5fdcadb77 .uk-grid > * {
  padding-left: 15px;
}
#a83aaa5fdcadb77 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a83aaa5fdcadb77 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a83aaa5fdcadb77 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a83aaa5fdcadb77 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a83aaa5fdcadb77 .article .info p {
  margin: 10px 0 10px;
}
#a83aaa5fdcadb77 .article svg {
  fill: currentColor;
}
#a83aaa5fdcadb77 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a83aaa5fdcadb77 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a83aaa5fdcadb77 .article.list-icon .info {
  padding-left: 25px;
}
#a83aaa5fdcadb77 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a83aaa5fdcadb77 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a83aaa5fdcadb77 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a83aaa5fdcadb77 .article:hover .title {
  color: #238bcd;
}
#a83aaa5fdcadb77 .article:hover .datetime {
  color: #238bcd;
}
#a83aaa5fdcadb77 .article:hover .category {
  color: #b6b6b6;
}
#a83aaa5fdcadb77 .article:hover .abstract {
  color: #b6b6b6;
}
#a83aaa5fdcadb77 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a83aaa5fdcadb77 .article:hover .list_icon {
  color: #b6b6b6;
}
#af4c3abdc9ad6e9 .uk-grid {
  margin-left: -15px;
}
#af4c3abdc9ad6e9 .uk-grid > * {
  padding-left: 15px;
}
#af4c3abdc9ad6e9 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#af4c3abdc9ad6e9 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#af4c3abdc9ad6e9 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#af4c3abdc9ad6e9 .article .info {
  padding: 6px 10px;
  position: relative;
}
#af4c3abdc9ad6e9 .article .info p {
  margin: 10px 0 10px;
}
#af4c3abdc9ad6e9 .article svg {
  fill: currentColor;
}
#af4c3abdc9ad6e9 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#af4c3abdc9ad6e9 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#af4c3abdc9ad6e9 .article.list-icon .info {
  padding-left: 25px;
}
#af4c3abdc9ad6e9 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#af4c3abdc9ad6e9 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af4c3abdc9ad6e9 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#af4c3abdc9ad6e9 .article:hover .title {
  color: #238bcd;
}
#af4c3abdc9ad6e9 .article:hover .datetime {
  color: #238bcd;
}
#af4c3abdc9ad6e9 .article:hover .category {
  color: #b6b6b6;
}
#af4c3abdc9ad6e9 .article:hover .abstract {
  color: #b6b6b6;
}
#af4c3abdc9ad6e9 .article:hover .btn_icon {
  color: #b6b6b6;
}
#af4c3abdc9ad6e9 .article:hover .list_icon {
  color: #b6b6b6;
}
#a95fba85b2a2330 {
  overflow: hidden;
  pointer-events: none;
}
#a95fba85b2a2330 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a95fba85b2a2330 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a95fba85b2a2330 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a95fba85b2a2330 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a95fba85b2a2330 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a95fba85b2a2330 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav,
#a95fba85b2a2330 > .tab-nav,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a95fba85b2a2330 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav-horizontal,
#a95fba85b2a2330 > .tab-nav-horizontal,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a95fba85b2a2330 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a95fba85b2a2330 > .tab-nav-horizontal::-webkit-scrollbar,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a95fba85b2a2330 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a95fba85b2a2330 > .tab-nav-horizontal.tagScroll,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a95fba85b2a2330 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a95fba85b2a2330 > .tab-nav-horizontal.tagScroll li a,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a95fba85b2a2330 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav a,
#a95fba85b2a2330 > .tab-nav a,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a95fba85b2a2330 > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav li a,
#a95fba85b2a2330 > .tab-nav li a,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a95fba85b2a2330 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav li a svg,
#a95fba85b2a2330 > .tab-nav li a svg,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a95fba85b2a2330 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a95fba85b2a2330 > .tab-nav li a .ap_icon,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a95fba85b2a2330 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav li a:hover,
#a95fba85b2a2330 > .tab-nav li a:hover,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a95fba85b2a2330 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#a95fba85b2a2330 > .tab-wrap > div > .tab-nav li.uk-active a,
#a95fba85b2a2330 > .tab-nav li.uk-active a,
#a95fba85b2a2330 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a95fba85b2a2330 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#a95fba85b2a2330 .layout-left li,
#a95fba85b2a2330 .layout-center li,
#a95fba85b2a2330 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a95fba85b2a2330 .layout-left li a,
#a95fba85b2a2330 .layout-center li a,
#a95fba85b2a2330 .layout-right li a {
  height: 100%;
}
#a95fba85b2a2330 > .tab-tabs .layout-left {
  text-align: left;
}
#a95fba85b2a2330 > .tab-tabs .layout-center {
  text-align: center;
}
#a95fba85b2a2330 > .tab-tabs .layout-right {
  text-align: right;
}
#a95fba85b2a2330 .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#a95fba85b2a2330 .tab-content-wrap {
  background-color: transparent;
}
#a95fba85b2a2330 .tab-contents,
#a95fba85b2a2330 .tab-contents-wrap {
  pointer-events: none;
}
#a95fba85b2a2330 .tab-content,
#a95fba85b2a2330 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a95fba85b2a2330 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a95fba85b2a2330 .tab-wrap .tab-contents {
  height: 100%;
}
#a95fba85b2a2330 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a95fba85b2a2330 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a95fba85b2a2330 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a4b53a37f3acd48 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a4b53a37f3acd48 .uk-grid {
  margin-left: -4px;
}
#a4b53a37f3acd48 .uk-grid > * {
  padding-left: 4px;
}
#a4b53a37f3acd48 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a4b53a37f3acd48 .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
  border-top-width: 1px;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a4b53a37f3acd48 .uk-card-media-top {
  overflow: hidden;
}
#a4b53a37f3acd48 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a4b53a37f3acd48 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a4b53a37f3acd48 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a4b53a37f3acd48 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a4b53a37f3acd48 .uk-card-body {
  padding: 15px 10px 8px;
}
#a4b53a37f3acd48 hr {
  border-top-color: rgba(180, 180, 180, 0.1);
  margin: 0 0 10px;
}
#a4b53a37f3acd48 .uk-button {
  border: 1px solid #ececec;
}
#a4b53a37f3acd48 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #000000;
}
#a4b53a37f3acd48 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #9b9b9b;
}
#a4b53a37f3acd48 .uk-card:hover {
  background-color: #ffffff;
}
#a4b53a37f3acd48 .uk-card:hover .title {
  color: #4a90e2;
}
#a4b53a37f3acd48 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a4b53a37f3acd48 .uk-card:hover .img {
  transform: scale(1.2);
}
#a4b53a37f3acd48 .uk-card:hover .abstract {
  color: #4a90e2;
}
#a4b53a37f3acd48 .uk-card:hover .datetime {
  color: #d3b267;
}
#a4b53a37f3acd48 .uk-card:hover .category {
  color: #d3b267;
}
#a4b53a37f3acd48 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a3c93aeec0a6c4e .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a3c93aeec0a6c4e .uk-grid {
  margin-left: -4px;
}
#a3c93aeec0a6c4e .uk-grid > * {
  padding-left: 4px;
}
#a3c93aeec0a6c4e .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a3c93aeec0a6c4e .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
  border-top-width: 1px;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a3c93aeec0a6c4e .uk-card-media-top {
  overflow: hidden;
}
#a3c93aeec0a6c4e .uk-card-media-top .img {
  transition: all .3s ease;
}
#a3c93aeec0a6c4e .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a3c93aeec0a6c4e .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a3c93aeec0a6c4e .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a3c93aeec0a6c4e .uk-card-body {
  padding: 15px 10px 8px;
}
#a3c93aeec0a6c4e hr {
  border-top-color: rgba(180, 180, 180, 0.1);
  margin: 0 0 10px;
}
#a3c93aeec0a6c4e .uk-button {
  border: 1px solid #ececec;
}
#a3c93aeec0a6c4e .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #000000;
}
#a3c93aeec0a6c4e .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #9b9b9b;
}
#a3c93aeec0a6c4e .uk-card:hover {
  background-color: #ffffff;
}
#a3c93aeec0a6c4e .uk-card:hover .title {
  color: #4a90e2;
}
#a3c93aeec0a6c4e .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a3c93aeec0a6c4e .uk-card:hover .img {
  transform: scale(1.2);
}
#a3c93aeec0a6c4e .uk-card:hover .abstract {
  color: #4a90e2;
}
#a3c93aeec0a6c4e .uk-card:hover .datetime {
  color: #d3b267;
}
#a3c93aeec0a6c4e .uk-card:hover .category {
  color: #d3b267;
}
#a3c93aeec0a6c4e .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#abe0dab189ae835 {
  overflow: hidden;
  pointer-events: none;
}
#abe0dab189ae835 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#abe0dab189ae835 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#abe0dab189ae835 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#abe0dab189ae835 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#abe0dab189ae835 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#abe0dab189ae835 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav,
#abe0dab189ae835 > .tab-nav,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav,
#abe0dab189ae835 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav-horizontal,
#abe0dab189ae835 > .tab-nav-horizontal,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#abe0dab189ae835 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#abe0dab189ae835 > .tab-nav-horizontal::-webkit-scrollbar,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#abe0dab189ae835 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#abe0dab189ae835 > .tab-nav-horizontal.tagScroll,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#abe0dab189ae835 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#abe0dab189ae835 > .tab-nav-horizontal.tagScroll li a,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#abe0dab189ae835 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav a,
#abe0dab189ae835 > .tab-nav a,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#abe0dab189ae835 > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav li a,
#abe0dab189ae835 > .tab-nav li a,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#abe0dab189ae835 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav li a svg,
#abe0dab189ae835 > .tab-nav li a svg,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#abe0dab189ae835 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav li a .ap_icon,
#abe0dab189ae835 > .tab-nav li a .ap_icon,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#abe0dab189ae835 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav li a:hover,
#abe0dab189ae835 > .tab-nav li a:hover,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#abe0dab189ae835 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#abe0dab189ae835 > .tab-wrap > div > .tab-nav li.uk-active a,
#abe0dab189ae835 > .tab-nav li.uk-active a,
#abe0dab189ae835 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#abe0dab189ae835 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#abe0dab189ae835 .layout-left li,
#abe0dab189ae835 .layout-center li,
#abe0dab189ae835 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#abe0dab189ae835 .layout-left li a,
#abe0dab189ae835 .layout-center li a,
#abe0dab189ae835 .layout-right li a {
  height: 100%;
}
#abe0dab189ae835 > .tab-tabs .layout-left {
  text-align: left;
}
#abe0dab189ae835 > .tab-tabs .layout-center {
  text-align: center;
}
#abe0dab189ae835 > .tab-tabs .layout-right {
  text-align: right;
}
#abe0dab189ae835 .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#abe0dab189ae835 .tab-content-wrap {
  background-color: transparent;
}
#abe0dab189ae835 .tab-contents,
#abe0dab189ae835 .tab-contents-wrap {
  pointer-events: none;
}
#abe0dab189ae835 .tab-content,
#abe0dab189ae835 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#abe0dab189ae835 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#abe0dab189ae835 .tab-wrap .tab-contents {
  height: 100%;
}
#abe0dab189ae835 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#abe0dab189ae835 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#abe0dab189ae835 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a342ea1633aca30 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1164afab7a0c9f > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#aa247a9d1fa6c36 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a16abab359a0497 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a16abab359a0497 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a16abab359a0497 .ap-icon {
  margin-right: 6px;
}
#a16abab359a0497 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#a16abab359a0497 .menu-list > li.icon-bottom > a,
#a16abab359a0497 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a16abab359a0497 .menu-list > li.icon-bottom > a .ap-icon,
#a16abab359a0497 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a16abab359a0497 .menu-list > li.icon-bottom > a .ap-icon svg,
#a16abab359a0497 .menu-list > li.icon-top > a .ap-icon svg,
#a16abab359a0497 .menu-list > li.icon-bottom > a .ap-icon img,
#a16abab359a0497 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a16abab359a0497 .menu-list > li.icon-right > a .ap-icon,
#a16abab359a0497 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a16abab359a0497 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a16abab359a0497 .menu-list > li:hover > a,
#a16abab359a0497 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a16abab359a0497 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a16abab359a0497 .menu-list ul,
#a16abab359a0497 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a16abab359a0497 .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#a16abab359a0497 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a16abab359a0497 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a16abab359a0497 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a6e4ca712fadaf0 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a12b6af952a7c87 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ae687a65eaad4d5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a104ca7861a3584 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a54ffa0dd5a1c08 a, #a54ffa0dd5a1c08 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a54ffa0dd5a1c08 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#aad6eaa937a6dd0 .a3d3ea4760af9c8 {
  overflow: hidden;
}
#aad6eaa937a6dd0 .a3d3ea4760af9c8 , #aad6eaa937a6dd0 .a3d3ea4760af9c8 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#aad6eaa937a6dd0 .a3d3ea4760af9c8:hover , #aad6eaa937a6dd0 .a3d3ea4760af9c8 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#aad6eaa937a6dd0 .a8f68a8c74ab3aa {
  overflow: hidden;
}
#aad6eaa937a6dd0 .a8f68a8c74ab3aa , #aad6eaa937a6dd0 .a8f68a8c74ab3aa > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;}#aad6eaa937a6dd0 .af07fad540afada  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#aad6eaa937a6dd0 .a7a9aa8f11a1e09 , #aad6eaa937a6dd0 .a7a9aa8f11a1e09 a{color: rgba(146, 143, 143, 1);}#aad6eaa937a6dd0 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#aad6eaa937a6dd0 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aad6eaa937a6dd0 .uk-position-center-left-out {
    left: -30px;
  }
  #aad6eaa937a6dd0 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5445a34a8abaa5 .a1b44a1723a9d52 {
  overflow: hidden;
}
#a5445a34a8abaa5 .a1b44a1723a9d52 , #a5445a34a8abaa5 .a1b44a1723a9d52 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a5445a34a8abaa5 .a1b44a1723a9d52:hover , #a5445a34a8abaa5 .a1b44a1723a9d52 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5445a34a8abaa5 .a7cf8a58c5a707b {
  overflow: hidden;
}
#a5445a34a8abaa5 .a7cf8a58c5a707b , #a5445a34a8abaa5 .a7cf8a58c5a707b > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;}#a5445a34a8abaa5 .a5a09ac182a07c7  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a5445a34a8abaa5 .abf8fa64e5a032d , #a5445a34a8abaa5 .abf8fa64e5a032d a{color: rgba(146, 143, 143, 1);}#a5445a34a8abaa5 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a5445a34a8abaa5 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5445a34a8abaa5 .uk-position-center-left-out {
    left: -30px;
  }
  #a5445a34a8abaa5 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a58cea5d68a15ed .ab6b4a16eba9488 {
  overflow: hidden;
}
#a58cea5d68a15ed .ab6b4a16eba9488 , #a58cea5d68a15ed .ab6b4a16eba9488 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a58cea5d68a15ed .ab6b4a16eba9488:hover , #a58cea5d68a15ed .ab6b4a16eba9488 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a58cea5d68a15ed .a2b73aee81a6c70 {
  overflow: hidden;
}
#a58cea5d68a15ed .a2b73aee81a6c70 , #a58cea5d68a15ed .a2b73aee81a6c70 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;}#a58cea5d68a15ed .ac583aa49ea466d  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a58cea5d68a15ed .a43beaaafaab4e4 , #a58cea5d68a15ed .a43beaaafaab4e4 a{color: rgba(146, 143, 143, 1);}#a58cea5d68a15ed .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a58cea5d68a15ed .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a58cea5d68a15ed .uk-position-center-left-out {
    left: -30px;
  }
  #a58cea5d68a15ed .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5a7ea7f67a02e7 {
  overflow: hidden;
  pointer-events: none;
}
#a5a7ea7f67a02e7 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a5a7ea7f67a02e7 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a5a7ea7f67a02e7 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5a7ea7f67a02e7 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a5a7ea7f67a02e7 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a5a7ea7f67a02e7 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav,
#a5a7ea7f67a02e7 > .tab-nav,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f9f9f9;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: dotted;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-right-style: dashed;
  border-left-style: dashed;
  border-top-style: dashed;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav-horizontal,
#a5a7ea7f67a02e7 > .tab-nav-horizontal,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5a7ea7f67a02e7 > .tab-nav-horizontal::-webkit-scrollbar,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5a7ea7f67a02e7 > .tab-nav-horizontal.tagScroll,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5a7ea7f67a02e7 > .tab-nav-horizontal.tagScroll li a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav a,
#a5a7ea7f67a02e7 > .tab-nav a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav a {
  padding: 0 10px;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav li a,
#a5a7ea7f67a02e7 > .tab-nav li a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 40px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 20px;
  margin-left: 20px;
  padding: 0 10px;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav li a svg,
#a5a7ea7f67a02e7 > .tab-nav li a svg,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5a7ea7f67a02e7 > .tab-nav li a .ap_icon,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav li a:hover,
#a5a7ea7f67a02e7 > .tab-nav li a:hover,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#a5a7ea7f67a02e7 > .tab-wrap > div > .tab-nav li.uk-active a,
#a5a7ea7f67a02e7 > .tab-nav li.uk-active a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a5a7ea7f67a02e7 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#a5a7ea7f67a02e7 .layout-left li,
#a5a7ea7f67a02e7 .layout-center li,
#a5a7ea7f67a02e7 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a5a7ea7f67a02e7 .layout-left li a,
#a5a7ea7f67a02e7 .layout-center li a,
#a5a7ea7f67a02e7 .layout-right li a {
  height: 100%;
}
#a5a7ea7f67a02e7 > .tab-tabs .layout-left {
  text-align: left;
}
#a5a7ea7f67a02e7 > .tab-tabs .layout-center {
  text-align: center;
}
#a5a7ea7f67a02e7 > .tab-tabs .layout-right {
  text-align: right;
}
#a5a7ea7f67a02e7 .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#a5a7ea7f67a02e7 .tab-content-wrap {
  background-color: transparent;
}
#a5a7ea7f67a02e7 .tab-contents,
#a5a7ea7f67a02e7 .tab-contents-wrap {
  pointer-events: none;
}
#a5a7ea7f67a02e7 .tab-content,
#a5a7ea7f67a02e7 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a5a7ea7f67a02e7 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a5a7ea7f67a02e7 .tab-wrap .tab-contents {
  height: 100%;
}
#a5a7ea7f67a02e7 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a5a7ea7f67a02e7 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a5a7ea7f67a02e7 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a1084a89faab3a9 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aee04ad6e3af9af > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a310ba6766ac834 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a002ca85c5afc49 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ab42dad9fba1486 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab42dad9fba1486 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab42dad9fba1486 .ap-icon {
  margin-right: 6px;
}
#ab42dad9fba1486 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
  height: nullpx;
}
#ab42dad9fba1486 .menu-list > li.icon-bottom > a,
#ab42dad9fba1486 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab42dad9fba1486 .menu-list > li.icon-bottom > a .ap-icon,
#ab42dad9fba1486 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab42dad9fba1486 .menu-list > li.icon-bottom > a .ap-icon svg,
#ab42dad9fba1486 .menu-list > li.icon-top > a .ap-icon svg,
#ab42dad9fba1486 .menu-list > li.icon-bottom > a .ap-icon img,
#ab42dad9fba1486 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab42dad9fba1486 .menu-list > li.icon-right > a .ap-icon,
#ab42dad9fba1486 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab42dad9fba1486 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab42dad9fba1486 .menu-list > li:hover > a,
#ab42dad9fba1486 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab42dad9fba1486 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab42dad9fba1486 .menu-list ul,
#ab42dad9fba1486 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab42dad9fba1486 .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#ab42dad9fba1486 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab42dad9fba1486 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab42dad9fba1486 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8486a1ac4a84a8 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8486a1ac4a84a8 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8486a1ac4a84a8 .ap-icon {
  margin-right: 6px;
}
#a8486a1ac4a84a8 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#a8486a1ac4a84a8 .menu-list > li.icon-bottom > a,
#a8486a1ac4a84a8 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8486a1ac4a84a8 .menu-list > li.icon-bottom > a .ap-icon,
#a8486a1ac4a84a8 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8486a1ac4a84a8 .menu-list > li.icon-bottom > a .ap-icon svg,
#a8486a1ac4a84a8 .menu-list > li.icon-top > a .ap-icon svg,
#a8486a1ac4a84a8 .menu-list > li.icon-bottom > a .ap-icon img,
#a8486a1ac4a84a8 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8486a1ac4a84a8 .menu-list > li.icon-right > a .ap-icon,
#a8486a1ac4a84a8 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8486a1ac4a84a8 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8486a1ac4a84a8 .menu-list > li:hover > a,
#a8486a1ac4a84a8 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8486a1ac4a84a8 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8486a1ac4a84a8 .menu-list ul,
#a8486a1ac4a84a8 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8486a1ac4a84a8 .menu-list ul {
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
}
#a8486a1ac4a84a8 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8486a1ac4a84a8 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8486a1ac4a84a8 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#adb92aef9daf187 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#adb92aef9daf187 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#adb92aef9daf187 .ap-icon {
  margin-right: 6px;
}
#adb92aef9daf187 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 120px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#adb92aef9daf187 .menu-list > li.icon-bottom > a,
#adb92aef9daf187 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#adb92aef9daf187 .menu-list > li.icon-bottom > a .ap-icon,
#adb92aef9daf187 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#adb92aef9daf187 .menu-list > li.icon-bottom > a .ap-icon svg,
#adb92aef9daf187 .menu-list > li.icon-top > a .ap-icon svg,
#adb92aef9daf187 .menu-list > li.icon-bottom > a .ap-icon img,
#adb92aef9daf187 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#adb92aef9daf187 .menu-list > li.icon-right > a .ap-icon,
#adb92aef9daf187 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#adb92aef9daf187 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#adb92aef9daf187 .menu-list > li:hover > a,
#adb92aef9daf187 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#adb92aef9daf187 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#adb92aef9daf187 .menu-list ul,
#adb92aef9daf187 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#adb92aef9daf187 .menu-list ul {
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
}
#adb92aef9daf187 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#adb92aef9daf187 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#adb92aef9daf187 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae62da8c20ad482 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a7868aca7ba9905 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6dcfa1e25af92e > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a750aae4c9ad399 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a03aba735dae231 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a03aba735dae231 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a03aba735dae231 .ap-icon {
  margin-right: 6px;
}
#a03aba735dae231 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a03aba735dae231 .menu-list > li.icon-bottom > a,
#a03aba735dae231 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a03aba735dae231 .menu-list > li.icon-bottom > a .ap-icon,
#a03aba735dae231 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a03aba735dae231 .menu-list > li.icon-bottom > a .ap-icon svg,
#a03aba735dae231 .menu-list > li.icon-top > a .ap-icon svg,
#a03aba735dae231 .menu-list > li.icon-bottom > a .ap-icon img,
#a03aba735dae231 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a03aba735dae231 .menu-list > li.icon-right > a .ap-icon,
#a03aba735dae231 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a03aba735dae231 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a03aba735dae231 .menu-list > li:hover > a,
#a03aba735dae231 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a03aba735dae231 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a03aba735dae231 .menu-list ul,
#a03aba735dae231 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a03aba735dae231 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a03aba735dae231 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a03aba735dae231 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a03aba735dae231 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a000da85c6a2fd5 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a000da85c6a2fd5 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a000da85c6a2fd5 .ap-icon {
  margin-right: 6px;
}
#a000da85c6a2fd5 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a000da85c6a2fd5 .menu-list > li.icon-bottom > a,
#a000da85c6a2fd5 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a000da85c6a2fd5 .menu-list > li.icon-bottom > a .ap-icon,
#a000da85c6a2fd5 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a000da85c6a2fd5 .menu-list > li.icon-bottom > a .ap-icon svg,
#a000da85c6a2fd5 .menu-list > li.icon-top > a .ap-icon svg,
#a000da85c6a2fd5 .menu-list > li.icon-bottom > a .ap-icon img,
#a000da85c6a2fd5 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a000da85c6a2fd5 .menu-list > li.icon-right > a .ap-icon,
#a000da85c6a2fd5 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a000da85c6a2fd5 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a000da85c6a2fd5 .menu-list > li:hover > a,
#a000da85c6a2fd5 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a000da85c6a2fd5 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a000da85c6a2fd5 .menu-list ul,
#a000da85c6a2fd5 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a000da85c6a2fd5 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#a000da85c6a2fd5 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a000da85c6a2fd5 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a000da85c6a2fd5 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a5598a1041a0177 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5598a1041a0177 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5598a1041a0177 .ap-icon {
  margin-right: 6px;
}
#a5598a1041a0177 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a5598a1041a0177 .menu-list > li.icon-bottom > a,
#a5598a1041a0177 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5598a1041a0177 .menu-list > li.icon-bottom > a .ap-icon,
#a5598a1041a0177 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5598a1041a0177 .menu-list > li.icon-bottom > a .ap-icon svg,
#a5598a1041a0177 .menu-list > li.icon-top > a .ap-icon svg,
#a5598a1041a0177 .menu-list > li.icon-bottom > a .ap-icon img,
#a5598a1041a0177 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5598a1041a0177 .menu-list > li.icon-right > a .ap-icon,
#a5598a1041a0177 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5598a1041a0177 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5598a1041a0177 .menu-list > li:hover > a,
#a5598a1041a0177 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5598a1041a0177 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a5598a1041a0177 .menu-list ul,
#a5598a1041a0177 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5598a1041a0177 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a5598a1041a0177 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5598a1041a0177 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5598a1041a0177 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af697a562aa67de .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af697a562aa67de .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af697a562aa67de .ap-icon {
  margin-right: 6px;
}
#af697a562aa67de .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#af697a562aa67de .menu-list > li.icon-bottom > a,
#af697a562aa67de .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af697a562aa67de .menu-list > li.icon-bottom > a .ap-icon,
#af697a562aa67de .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af697a562aa67de .menu-list > li.icon-bottom > a .ap-icon svg,
#af697a562aa67de .menu-list > li.icon-top > a .ap-icon svg,
#af697a562aa67de .menu-list > li.icon-bottom > a .ap-icon img,
#af697a562aa67de .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af697a562aa67de .menu-list > li.icon-right > a .ap-icon,
#af697a562aa67de .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af697a562aa67de .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af697a562aa67de .menu-list > li:hover > a,
#af697a562aa67de .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af697a562aa67de .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#af697a562aa67de .menu-list ul,
#af697a562aa67de .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af697a562aa67de .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#af697a562aa67de .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af697a562aa67de .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af697a562aa67de .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4724a5128a66c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a4724a5128a66c6 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a4724a5128a66c6 .ap-icon {
  margin-right: 6px;
}
#a4724a5128a66c6 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a4724a5128a66c6 .menu-list > li.icon-bottom > a,
#a4724a5128a66c6 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a4724a5128a66c6 .menu-list > li.icon-bottom > a .ap-icon,
#a4724a5128a66c6 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a4724a5128a66c6 .menu-list > li.icon-bottom > a .ap-icon svg,
#a4724a5128a66c6 .menu-list > li.icon-top > a .ap-icon svg,
#a4724a5128a66c6 .menu-list > li.icon-bottom > a .ap-icon img,
#a4724a5128a66c6 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a4724a5128a66c6 .menu-list > li.icon-right > a .ap-icon,
#a4724a5128a66c6 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a4724a5128a66c6 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a4724a5128a66c6 .menu-list > li:hover > a,
#a4724a5128a66c6 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a4724a5128a66c6 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a4724a5128a66c6 .menu-list ul,
#a4724a5128a66c6 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4724a5128a66c6 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a4724a5128a66c6 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4724a5128a66c6 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4724a5128a66c6 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3d51acdbfa04f2 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac1d4a15c4a5858 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a1491a7edea8db1 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1420a7c9faa1b1 a, #a1420a7c9faa1b1 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a1420a7c9faa1b1 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ad942ae9d2a1830 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(155, 155, 155, 0.2);border-right-color: rgba(155, 155, 155, 0.2);border-left-color: rgba(155, 155, 155, 0.2);border-bottom-color: rgba(155, 155, 155, 0.2);}#aa6aeaaacdac089 .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(155, 155, 155, 0.2);border-radius: 0px;justify-content: center;border-style: solid;}#aa6aeaaacdac089 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(155, 155, 155, 0.2);border-color: rgba(249, 249, 249, 1);}#add19aee5ca343e .af910a6e75a2e37 {
  overflow: hidden;
}
#add19aee5ca343e .a07cba8acaa2e16 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#add19aee5ca343e .afb62a7648a8540 {
  overflow: hidden;
}
#add19aee5ca343e .afb62a7648a8540 , #add19aee5ca343e .afb62a7648a8540 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#add19aee5ca343e .a7071ab669a1567 .ele-wrap {color: #9b9b9b;border-width: 0px;border-style: solid;font-size: 14px;background-color: rgba(241, 241, 241, 1);justify-content: center;}#add19aee5ca343e .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#add19aee5ca343e .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #add19aee5ca343e .uk-position-center-left-out {
    left: -30px;
  }
  #add19aee5ca343e .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a463aa021da4eba > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(155, 155, 155, 0.2);border-right-color: rgba(155, 155, 155, 0.2);border-left-color: rgba(155, 155, 155, 0.2);border-bottom-color: rgba(155, 155, 155, 0.2);}#a2c0aaefb9af2cc .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(155, 155, 155, 0.2);border-radius: 0px;justify-content: center;border-style: solid;}#a2c0aaefb9af2cc .ele-wrap:hover {background-color: #0483cc;background-color: rgba(155, 155, 155, 0.2);border-color: rgba(249, 249, 249, 1);}#a7619ab953a869d .a2e5baf4e0a2e40 {
  overflow: hidden;
}
#a7619ab953a869d .aeaada6eafab5e8 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a7619ab953a869d .ab7cea78eba1cf5 {
  overflow: hidden;
}
#a7619ab953a869d .ab7cea78eba1cf5 , #a7619ab953a869d .ab7cea78eba1cf5 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a7619ab953a869d .ac8c9aea7ba08f6 .ele-wrap {color: #9b9b9b;border-width: 0px;border-style: solid;font-size: 14px;background-color: rgba(241, 241, 241, 1);justify-content: center;}#a7619ab953a869d .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a7619ab953a869d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a7619ab953a869d .uk-position-center-left-out {
    left: -30px;
  }
  #a7619ab953a869d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7728ae0c7add19 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(155, 155, 155, 0.2);border-right-color: rgba(155, 155, 155, 0.2);border-left-color: rgba(155, 155, 155, 0.2);border-bottom-color: rgba(155, 155, 155, 0.2);}#aefefa2562a647b .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(155, 155, 155, 0.2);border-radius: 0px;justify-content: center;border-style: solid;}#aefefa2562a647b .ele-wrap:hover {background-color: #0483cc;background-color: rgba(155, 155, 155, 0.2);border-color: rgba(249, 249, 249, 1);}#a9eb7a2511acee2 .aa6cda6d49ae429 {
  overflow: hidden;
}
#a9eb7a2511acee2 .a312ba0ee2a6cfe > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a9eb7a2511acee2 .a3b8ba35e4a5ece {
  overflow: hidden;
}
#a9eb7a2511acee2 .a3b8ba35e4a5ece , #a9eb7a2511acee2 .a3b8ba35e4a5ece > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a9eb7a2511acee2 .a032aacca5abc6e .ele-wrap {color: #9b9b9b;border-width: 0px;border-style: solid;font-size: 14px;background-color: rgba(241, 241, 241, 1);justify-content: center;}#a9eb7a2511acee2 .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a9eb7a2511acee2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a9eb7a2511acee2 .uk-position-center-left-out {
    left: -30px;
  }
  #a9eb7a2511acee2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a61a7aefe3a923d [data-item*=".abstract"], #a61a7aefe3a923d [data-item*=".abstract"] a {show: true;}#a61a7aefe3a923d [data-item*=".subTitle"], #a61a7aefe3a923d [data-item*=".subTitle"] a {show: true;}#a61a7aefe3a923d [data-item*=".category"], #a61a7aefe3a923d [data-item*=".category"] a {show: true;}#a4d09a559eaadf7 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#abc92a49c6af4d2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a3209a2dcaac2d5 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac362a74d8a7bf7 a, #ac362a74d8a7bf7 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#ac362a74d8a7bf7 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ae0daa2560a7362 .a83d8ab06da14e0 {
  overflow: hidden;
}
#ae0daa2560a7362 .a83d8ab06da14e0 , #ae0daa2560a7362 .a83d8ab06da14e0 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#ae0daa2560a7362 .a83d8ab06da14e0:hover , #ae0daa2560a7362 .a83d8ab06da14e0 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#ae0daa2560a7362 .ac7d0ae680a3d07 {
  overflow: hidden;
}
#ae0daa2560a7362 .ac7d0ae680a3d07 , #ae0daa2560a7362 .ac7d0ae680a3d07 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#ae0daa2560a7362 .a6088a4520a6734  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#ae0daa2560a7362 .a5616a974aa5eef , #ae0daa2560a7362 .a5616a974aa5eef a{color: rgba(146, 143, 143, 1);}#ae0daa2560a7362 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#ae0daa2560a7362 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae0daa2560a7362 .uk-position-center-left-out {
    left: -30px;
  }
  #ae0daa2560a7362 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ad2f8a0508a3773 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae68eadc09a9b01 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ac275a4495ae5c4 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a2be9a0563a3b4f .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a2be9a0563a3b4f .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a2be9a0563a3b4f .ap-icon {
  margin-right: 6px;
}
#a2be9a0563a3b4f .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a2be9a0563a3b4f .menu-list > li.icon-bottom > a,
#a2be9a0563a3b4f .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a2be9a0563a3b4f .menu-list > li.icon-bottom > a .ap-icon,
#a2be9a0563a3b4f .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a2be9a0563a3b4f .menu-list > li.icon-bottom > a .ap-icon svg,
#a2be9a0563a3b4f .menu-list > li.icon-top > a .ap-icon svg,
#a2be9a0563a3b4f .menu-list > li.icon-bottom > a .ap-icon img,
#a2be9a0563a3b4f .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a2be9a0563a3b4f .menu-list > li.icon-right > a .ap-icon,
#a2be9a0563a3b4f .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a2be9a0563a3b4f .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a2be9a0563a3b4f .menu-list > li:hover > a,
#a2be9a0563a3b4f .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a2be9a0563a3b4f .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a2be9a0563a3b4f .menu-list ul,
#a2be9a0563a3b4f .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a2be9a0563a3b4f .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a2be9a0563a3b4f .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a2be9a0563a3b4f .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a2be9a0563a3b4f .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a43b6ac493aac1e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a43b6ac493aac1e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a43b6ac493aac1e .ap-icon {
  margin-right: 6px;
}
#a43b6ac493aac1e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a43b6ac493aac1e .menu-list > li.icon-bottom > a,
#a43b6ac493aac1e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a43b6ac493aac1e .menu-list > li.icon-bottom > a .ap-icon,
#a43b6ac493aac1e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a43b6ac493aac1e .menu-list > li.icon-bottom > a .ap-icon svg,
#a43b6ac493aac1e .menu-list > li.icon-top > a .ap-icon svg,
#a43b6ac493aac1e .menu-list > li.icon-bottom > a .ap-icon img,
#a43b6ac493aac1e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a43b6ac493aac1e .menu-list > li.icon-right > a .ap-icon,
#a43b6ac493aac1e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a43b6ac493aac1e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a43b6ac493aac1e .menu-list > li:hover > a,
#a43b6ac493aac1e .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a43b6ac493aac1e .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a43b6ac493aac1e .menu-list ul,
#a43b6ac493aac1e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a43b6ac493aac1e .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#a43b6ac493aac1e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a43b6ac493aac1e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a43b6ac493aac1e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#abea8a9e59a29b8 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#abea8a9e59a29b8 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#abea8a9e59a29b8 .ap-icon {
  margin-right: 6px;
}
#abea8a9e59a29b8 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#abea8a9e59a29b8 .menu-list > li.icon-bottom > a,
#abea8a9e59a29b8 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#abea8a9e59a29b8 .menu-list > li.icon-bottom > a .ap-icon,
#abea8a9e59a29b8 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#abea8a9e59a29b8 .menu-list > li.icon-bottom > a .ap-icon svg,
#abea8a9e59a29b8 .menu-list > li.icon-top > a .ap-icon svg,
#abea8a9e59a29b8 .menu-list > li.icon-bottom > a .ap-icon img,
#abea8a9e59a29b8 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#abea8a9e59a29b8 .menu-list > li.icon-right > a .ap-icon,
#abea8a9e59a29b8 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#abea8a9e59a29b8 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#abea8a9e59a29b8 .menu-list > li:hover > a,
#abea8a9e59a29b8 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#abea8a9e59a29b8 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#abea8a9e59a29b8 .menu-list ul,
#abea8a9e59a29b8 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#abea8a9e59a29b8 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#abea8a9e59a29b8 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abea8a9e59a29b8 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abea8a9e59a29b8 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa42ea1216a1339 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa42ea1216a1339 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa42ea1216a1339 .ap-icon {
  margin-right: 6px;
}
#aa42ea1216a1339 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#aa42ea1216a1339 .menu-list > li.icon-bottom > a,
#aa42ea1216a1339 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa42ea1216a1339 .menu-list > li.icon-bottom > a .ap-icon,
#aa42ea1216a1339 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa42ea1216a1339 .menu-list > li.icon-bottom > a .ap-icon svg,
#aa42ea1216a1339 .menu-list > li.icon-top > a .ap-icon svg,
#aa42ea1216a1339 .menu-list > li.icon-bottom > a .ap-icon img,
#aa42ea1216a1339 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa42ea1216a1339 .menu-list > li.icon-right > a .ap-icon,
#aa42ea1216a1339 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa42ea1216a1339 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa42ea1216a1339 .menu-list > li:hover > a,
#aa42ea1216a1339 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa42ea1216a1339 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#aa42ea1216a1339 .menu-list ul,
#aa42ea1216a1339 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa42ea1216a1339 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#aa42ea1216a1339 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa42ea1216a1339 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa42ea1216a1339 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af100ac972af3d7 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af100ac972af3d7 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af100ac972af3d7 .ap-icon {
  margin-right: 6px;
}
#af100ac972af3d7 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#af100ac972af3d7 .menu-list > li.icon-bottom > a,
#af100ac972af3d7 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af100ac972af3d7 .menu-list > li.icon-bottom > a .ap-icon,
#af100ac972af3d7 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af100ac972af3d7 .menu-list > li.icon-bottom > a .ap-icon svg,
#af100ac972af3d7 .menu-list > li.icon-top > a .ap-icon svg,
#af100ac972af3d7 .menu-list > li.icon-bottom > a .ap-icon img,
#af100ac972af3d7 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af100ac972af3d7 .menu-list > li.icon-right > a .ap-icon,
#af100ac972af3d7 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af100ac972af3d7 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af100ac972af3d7 .menu-list > li:hover > a,
#af100ac972af3d7 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af100ac972af3d7 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af100ac972af3d7 .menu-list ul,
#af100ac972af3d7 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af100ac972af3d7 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#af100ac972af3d7 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af100ac972af3d7 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af100ac972af3d7 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a9971afeeba162e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abd93ad7d0ab3ae .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a7128a4623aee66 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#afeaca1227a5b6a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a132ca379fabdc3 a, #a132ca379fabdc3 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a132ca379fabdc3 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a7e05a2dcbac2fa .uk-grid {
  margin-left: -15px;
}
#a7e05a2dcbac2fa .uk-grid > * {
  padding-left: 15px;
}
#a7e05a2dcbac2fa .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a7e05a2dcbac2fa .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a7e05a2dcbac2fa .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a7e05a2dcbac2fa .article .info {
  padding: 10px 10px;
  position: relative;
}
#a7e05a2dcbac2fa .article .info p {
  margin: 10px 0 10px;
}
#a7e05a2dcbac2fa .article svg {
  fill: currentColor;
}
#a7e05a2dcbac2fa .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#a7e05a2dcbac2fa .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#a7e05a2dcbac2fa .article.list-icon .info {
  padding-left: 25px;
}
#a7e05a2dcbac2fa .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#a7e05a2dcbac2fa .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a7e05a2dcbac2fa .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a7e05a2dcbac2fa .article:hover .title {
  color: #238bcd;
}
#a7e05a2dcbac2fa .article:hover .datetime {
  color: #238bcd;
}
#a7e05a2dcbac2fa .article:hover .category {
  color: #b6b6b6;
}
#a7e05a2dcbac2fa .article:hover .abstract {
  color: #b6b6b6;
}
#a7e05a2dcbac2fa .article:hover .btn_icon {
  color: #b6b6b6;
}
#a7e05a2dcbac2fa .article:hover .list_icon {
  color: #b6b6b6;
}
#af8b5a0fb7ad0ca > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7a10a6be4af989 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ac3b1a4a32a2f2a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#af0afae839ac633 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af0afae839ac633 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af0afae839ac633 .ap-icon {
  margin-right: 6px;
}
#af0afae839ac633 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#af0afae839ac633 .menu-list > li.icon-bottom > a,
#af0afae839ac633 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af0afae839ac633 .menu-list > li.icon-bottom > a .ap-icon,
#af0afae839ac633 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af0afae839ac633 .menu-list > li.icon-bottom > a .ap-icon svg,
#af0afae839ac633 .menu-list > li.icon-top > a .ap-icon svg,
#af0afae839ac633 .menu-list > li.icon-bottom > a .ap-icon img,
#af0afae839ac633 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af0afae839ac633 .menu-list > li.icon-right > a .ap-icon,
#af0afae839ac633 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af0afae839ac633 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af0afae839ac633 .menu-list > li:hover > a,
#af0afae839ac633 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af0afae839ac633 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af0afae839ac633 .menu-list ul,
#af0afae839ac633 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af0afae839ac633 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#af0afae839ac633 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af0afae839ac633 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af0afae839ac633 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aaccda6094a428e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aaccda6094a428e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aaccda6094a428e .ap-icon {
  margin-right: 6px;
}
#aaccda6094a428e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#aaccda6094a428e .menu-list > li.icon-bottom > a,
#aaccda6094a428e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aaccda6094a428e .menu-list > li.icon-bottom > a .ap-icon,
#aaccda6094a428e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aaccda6094a428e .menu-list > li.icon-bottom > a .ap-icon svg,
#aaccda6094a428e .menu-list > li.icon-top > a .ap-icon svg,
#aaccda6094a428e .menu-list > li.icon-bottom > a .ap-icon img,
#aaccda6094a428e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aaccda6094a428e .menu-list > li.icon-right > a .ap-icon,
#aaccda6094a428e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aaccda6094a428e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aaccda6094a428e .menu-list > li:hover > a,
#aaccda6094a428e .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aaccda6094a428e .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aaccda6094a428e .menu-list ul,
#aaccda6094a428e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aaccda6094a428e .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#aaccda6094a428e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aaccda6094a428e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aaccda6094a428e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0247a4e3ca23c7 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a0247a4e3ca23c7 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a0247a4e3ca23c7 .ap-icon {
  margin-right: 6px;
}
#a0247a4e3ca23c7 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a0247a4e3ca23c7 .menu-list > li.icon-bottom > a,
#a0247a4e3ca23c7 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a0247a4e3ca23c7 .menu-list > li.icon-bottom > a .ap-icon,
#a0247a4e3ca23c7 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a0247a4e3ca23c7 .menu-list > li.icon-bottom > a .ap-icon svg,
#a0247a4e3ca23c7 .menu-list > li.icon-top > a .ap-icon svg,
#a0247a4e3ca23c7 .menu-list > li.icon-bottom > a .ap-icon img,
#a0247a4e3ca23c7 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a0247a4e3ca23c7 .menu-list > li.icon-right > a .ap-icon,
#a0247a4e3ca23c7 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a0247a4e3ca23c7 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a0247a4e3ca23c7 .menu-list > li:hover > a,
#a0247a4e3ca23c7 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a0247a4e3ca23c7 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a0247a4e3ca23c7 .menu-list ul,
#a0247a4e3ca23c7 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a0247a4e3ca23c7 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a0247a4e3ca23c7 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a0247a4e3ca23c7 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a0247a4e3ca23c7 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a84c8af192af138 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a84c8af192af138 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a84c8af192af138 .ap-icon {
  margin-right: 6px;
}
#a84c8af192af138 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a84c8af192af138 .menu-list > li.icon-bottom > a,
#a84c8af192af138 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a84c8af192af138 .menu-list > li.icon-bottom > a .ap-icon,
#a84c8af192af138 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a84c8af192af138 .menu-list > li.icon-bottom > a .ap-icon svg,
#a84c8af192af138 .menu-list > li.icon-top > a .ap-icon svg,
#a84c8af192af138 .menu-list > li.icon-bottom > a .ap-icon img,
#a84c8af192af138 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a84c8af192af138 .menu-list > li.icon-right > a .ap-icon,
#a84c8af192af138 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a84c8af192af138 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a84c8af192af138 .menu-list > li:hover > a,
#a84c8af192af138 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a84c8af192af138 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a84c8af192af138 .menu-list ul,
#a84c8af192af138 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a84c8af192af138 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a84c8af192af138 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a84c8af192af138 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a84c8af192af138 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1917ab888a3709 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1917ab888a3709 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1917ab888a3709 .ap-icon {
  margin-right: 6px;
}
#a1917ab888a3709 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a1917ab888a3709 .menu-list > li.icon-bottom > a,
#a1917ab888a3709 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1917ab888a3709 .menu-list > li.icon-bottom > a .ap-icon,
#a1917ab888a3709 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1917ab888a3709 .menu-list > li.icon-bottom > a .ap-icon svg,
#a1917ab888a3709 .menu-list > li.icon-top > a .ap-icon svg,
#a1917ab888a3709 .menu-list > li.icon-bottom > a .ap-icon img,
#a1917ab888a3709 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1917ab888a3709 .menu-list > li.icon-right > a .ap-icon,
#a1917ab888a3709 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1917ab888a3709 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1917ab888a3709 .menu-list > li:hover > a,
#a1917ab888a3709 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1917ab888a3709 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1917ab888a3709 .menu-list ul,
#a1917ab888a3709 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1917ab888a3709 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a1917ab888a3709 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1917ab888a3709 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1917ab888a3709 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af676aa354a0d5d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6f2ea778aaadbc .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#af84da2051aa344 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ab8c2a4588a56e7 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5662ade74a86d6 a, #a5662ade74a86d6 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5662ade74a86d6 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a2528a276ea353c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aeb74a06e7a0dc4 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#a5afbab26ea3807 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5afbab26ea3807 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5afbab26ea3807 .ap-icon {
  margin-right: 6px;
}
#a5afbab26ea3807 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a5afbab26ea3807 .menu-list > li.icon-bottom > a,
#a5afbab26ea3807 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5afbab26ea3807 .menu-list > li.icon-bottom > a .ap-icon,
#a5afbab26ea3807 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5afbab26ea3807 .menu-list > li.icon-bottom > a .ap-icon svg,
#a5afbab26ea3807 .menu-list > li.icon-top > a .ap-icon svg,
#a5afbab26ea3807 .menu-list > li.icon-bottom > a .ap-icon img,
#a5afbab26ea3807 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5afbab26ea3807 .menu-list > li.icon-right > a .ap-icon,
#a5afbab26ea3807 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5afbab26ea3807 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5afbab26ea3807 .menu-list > li:hover > a,
#a5afbab26ea3807 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5afbab26ea3807 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5afbab26ea3807 .menu-list ul,
#a5afbab26ea3807 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5afbab26ea3807 .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#a5afbab26ea3807 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5afbab26ea3807 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5afbab26ea3807 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a56c8a9430afaef .uk-grid {
  margin-left: -15px;
}
#a56c8a9430afaef .uk-grid > * {
  padding-left: 15px;
}
#a56c8a9430afaef .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a56c8a9430afaef .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a56c8a9430afaef .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a56c8a9430afaef .article .info {
  padding: 6px 10px;
  position: relative;
}
#a56c8a9430afaef .article .info p {
  margin: 10px 0 10px;
}
#a56c8a9430afaef .article svg {
  fill: currentColor;
}
#a56c8a9430afaef .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a56c8a9430afaef .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a56c8a9430afaef .article.list-icon .info {
  padding-left: 25px;
}
#a56c8a9430afaef .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a56c8a9430afaef .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a56c8a9430afaef .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a56c8a9430afaef .article:hover .title {
  color: #238bcd;
}
#a56c8a9430afaef .article:hover .datetime {
  color: #238bcd;
}
#a56c8a9430afaef .article:hover .category {
  color: #b6b6b6;
}
#a56c8a9430afaef .article:hover .abstract {
  color: #b6b6b6;
}
#a56c8a9430afaef .article:hover .btn_icon {
  color: #b6b6b6;
}
#a56c8a9430afaef .article:hover .list_icon {
  color: #b6b6b6;
}
#ad991a8b5fa21fe > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a084bab79cab966 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#a8bd3ab6d7a79d5 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8bd3ab6d7a79d5 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8bd3ab6d7a79d5 .ap-icon {
  margin-right: 6px;
}
#a8bd3ab6d7a79d5 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a8bd3ab6d7a79d5 .menu-list > li.icon-bottom > a,
#a8bd3ab6d7a79d5 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8bd3ab6d7a79d5 .menu-list > li.icon-bottom > a .ap-icon,
#a8bd3ab6d7a79d5 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8bd3ab6d7a79d5 .menu-list > li.icon-bottom > a .ap-icon svg,
#a8bd3ab6d7a79d5 .menu-list > li.icon-top > a .ap-icon svg,
#a8bd3ab6d7a79d5 .menu-list > li.icon-bottom > a .ap-icon img,
#a8bd3ab6d7a79d5 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8bd3ab6d7a79d5 .menu-list > li.icon-right > a .ap-icon,
#a8bd3ab6d7a79d5 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8bd3ab6d7a79d5 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8bd3ab6d7a79d5 .menu-list > li:hover > a,
#a8bd3ab6d7a79d5 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8bd3ab6d7a79d5 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8bd3ab6d7a79d5 .menu-list ul,
#a8bd3ab6d7a79d5 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8bd3ab6d7a79d5 .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#a8bd3ab6d7a79d5 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8bd3ab6d7a79d5 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8bd3ab6d7a79d5 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a6d61a1cdfad2b0 .uk-grid {
  margin-left: -15px;
}
#a6d61a1cdfad2b0 .uk-grid > * {
  padding-left: 15px;
}
#a6d61a1cdfad2b0 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6d61a1cdfad2b0 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a6d61a1cdfad2b0 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a6d61a1cdfad2b0 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a6d61a1cdfad2b0 .article .info p {
  margin: 10px 0 10px;
}
#a6d61a1cdfad2b0 .article svg {
  fill: currentColor;
}
#a6d61a1cdfad2b0 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a6d61a1cdfad2b0 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a6d61a1cdfad2b0 .article.list-icon .info {
  padding-left: 25px;
}
#a6d61a1cdfad2b0 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a6d61a1cdfad2b0 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a6d61a1cdfad2b0 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a6d61a1cdfad2b0 .article:hover .title {
  color: #238bcd;
}
#a6d61a1cdfad2b0 .article:hover .datetime {
  color: #238bcd;
}
#a6d61a1cdfad2b0 .article:hover .category {
  color: #b6b6b6;
}
#a6d61a1cdfad2b0 .article:hover .abstract {
  color: #b6b6b6;
}
#a6d61a1cdfad2b0 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a6d61a1cdfad2b0 .article:hover .list_icon {
  color: #b6b6b6;
}
#ae978acac6a793c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab8b3a31a4a4aa4 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#a24faac81eaeda1 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a24faac81eaeda1 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a24faac81eaeda1 .ap-icon {
  margin-right: 6px;
}
#a24faac81eaeda1 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a24faac81eaeda1 .menu-list > li.icon-bottom > a,
#a24faac81eaeda1 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a24faac81eaeda1 .menu-list > li.icon-bottom > a .ap-icon,
#a24faac81eaeda1 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a24faac81eaeda1 .menu-list > li.icon-bottom > a .ap-icon svg,
#a24faac81eaeda1 .menu-list > li.icon-top > a .ap-icon svg,
#a24faac81eaeda1 .menu-list > li.icon-bottom > a .ap-icon img,
#a24faac81eaeda1 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a24faac81eaeda1 .menu-list > li.icon-right > a .ap-icon,
#a24faac81eaeda1 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a24faac81eaeda1 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a24faac81eaeda1 .menu-list > li:hover > a,
#a24faac81eaeda1 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a24faac81eaeda1 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a24faac81eaeda1 .menu-list ul,
#a24faac81eaeda1 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a24faac81eaeda1 .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#a24faac81eaeda1 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a24faac81eaeda1 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a24faac81eaeda1 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af0feab745a9189 .uk-grid {
  margin-left: -15px;
}
#af0feab745a9189 .uk-grid > * {
  padding-left: 15px;
}
#af0feab745a9189 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#af0feab745a9189 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#af0feab745a9189 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#af0feab745a9189 .article .info {
  padding: 6px 10px;
  position: relative;
}
#af0feab745a9189 .article .info p {
  margin: 10px 0 10px;
}
#af0feab745a9189 .article svg {
  fill: currentColor;
}
#af0feab745a9189 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#af0feab745a9189 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#af0feab745a9189 .article.list-icon .info {
  padding-left: 25px;
}
#af0feab745a9189 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#af0feab745a9189 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af0feab745a9189 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#af0feab745a9189 .article:hover .title {
  color: #238bcd;
}
#af0feab745a9189 .article:hover .datetime {
  color: #238bcd;
}
#af0feab745a9189 .article:hover .category {
  color: #b6b6b6;
}
#af0feab745a9189 .article:hover .abstract {
  color: #b6b6b6;
}
#af0feab745a9189 .article:hover .btn_icon {
  color: #b6b6b6;
}
#af0feab745a9189 .article:hover .list_icon {
  color: #b6b6b6;
}
#aba4face7eae18c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a04c6afa49a5947 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ac2eda593da5892 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ac363a27b3a7688 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac363a27b3a7688 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac363a27b3a7688 .ap-icon {
  margin-right: 6px;
}
#ac363a27b3a7688 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ac363a27b3a7688 .menu-list > li.icon-bottom > a,
#ac363a27b3a7688 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac363a27b3a7688 .menu-list > li.icon-bottom > a .ap-icon,
#ac363a27b3a7688 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac363a27b3a7688 .menu-list > li.icon-bottom > a .ap-icon svg,
#ac363a27b3a7688 .menu-list > li.icon-top > a .ap-icon svg,
#ac363a27b3a7688 .menu-list > li.icon-bottom > a .ap-icon img,
#ac363a27b3a7688 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac363a27b3a7688 .menu-list > li.icon-right > a .ap-icon,
#ac363a27b3a7688 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac363a27b3a7688 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac363a27b3a7688 .menu-list > li:hover > a,
#ac363a27b3a7688 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ac363a27b3a7688 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ac363a27b3a7688 .menu-list ul,
#ac363a27b3a7688 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac363a27b3a7688 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ac363a27b3a7688 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac363a27b3a7688 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac363a27b3a7688 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa8f8a24a2ac3dc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa8f8a24a2ac3dc .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa8f8a24a2ac3dc .ap-icon {
  margin-right: 6px;
}
#aa8f8a24a2ac3dc .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#aa8f8a24a2ac3dc .menu-list > li.icon-bottom > a,
#aa8f8a24a2ac3dc .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa8f8a24a2ac3dc .menu-list > li.icon-bottom > a .ap-icon,
#aa8f8a24a2ac3dc .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa8f8a24a2ac3dc .menu-list > li.icon-bottom > a .ap-icon svg,
#aa8f8a24a2ac3dc .menu-list > li.icon-top > a .ap-icon svg,
#aa8f8a24a2ac3dc .menu-list > li.icon-bottom > a .ap-icon img,
#aa8f8a24a2ac3dc .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa8f8a24a2ac3dc .menu-list > li.icon-right > a .ap-icon,
#aa8f8a24a2ac3dc .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa8f8a24a2ac3dc .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa8f8a24a2ac3dc .menu-list > li:hover > a,
#aa8f8a24a2ac3dc .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa8f8a24a2ac3dc .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa8f8a24a2ac3dc .menu-list ul,
#aa8f8a24a2ac3dc .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa8f8a24a2ac3dc .menu-list ul {
  top: 146px;
  left: 50%;
  transform: translateX(-50%);
}
#aa8f8a24a2ac3dc .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa8f8a24a2ac3dc .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa8f8a24a2ac3dc .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#abd67afc9baefb3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#abd67afc9baefb3 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#abd67afc9baefb3 .ap-icon {
  margin-right: 6px;
}
#abd67afc9baefb3 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 150px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#abd67afc9baefb3 .menu-list > li.icon-bottom > a,
#abd67afc9baefb3 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#abd67afc9baefb3 .menu-list > li.icon-bottom > a .ap-icon,
#abd67afc9baefb3 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#abd67afc9baefb3 .menu-list > li.icon-bottom > a .ap-icon svg,
#abd67afc9baefb3 .menu-list > li.icon-top > a .ap-icon svg,
#abd67afc9baefb3 .menu-list > li.icon-bottom > a .ap-icon img,
#abd67afc9baefb3 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#abd67afc9baefb3 .menu-list > li.icon-right > a .ap-icon,
#abd67afc9baefb3 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#abd67afc9baefb3 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#abd67afc9baefb3 .menu-list > li:hover > a,
#abd67afc9baefb3 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#abd67afc9baefb3 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#abd67afc9baefb3 .menu-list ul,
#abd67afc9baefb3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#abd67afc9baefb3 .menu-list ul {
  top: 183px;
  left: 50%;
  transform: translateX(-50%);
}
#abd67afc9baefb3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abd67afc9baefb3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abd67afc9baefb3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0b8ca3884a6428 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a0b8ca3884a6428 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a0b8ca3884a6428 .ap-icon {
  margin-right: 6px;
}
#a0b8ca3884a6428 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a0b8ca3884a6428 .menu-list > li.icon-bottom > a,
#a0b8ca3884a6428 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a0b8ca3884a6428 .menu-list > li.icon-bottom > a .ap-icon,
#a0b8ca3884a6428 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a0b8ca3884a6428 .menu-list > li.icon-bottom > a .ap-icon svg,
#a0b8ca3884a6428 .menu-list > li.icon-top > a .ap-icon svg,
#a0b8ca3884a6428 .menu-list > li.icon-bottom > a .ap-icon img,
#a0b8ca3884a6428 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a0b8ca3884a6428 .menu-list > li.icon-right > a .ap-icon,
#a0b8ca3884a6428 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a0b8ca3884a6428 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a0b8ca3884a6428 .menu-list > li:hover > a,
#a0b8ca3884a6428 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a0b8ca3884a6428 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a0b8ca3884a6428 .menu-list ul,
#a0b8ca3884a6428 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a0b8ca3884a6428 .menu-list ul {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
#a0b8ca3884a6428 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a0b8ca3884a6428 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a0b8ca3884a6428 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a6107a66b3a0404 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a48f4a3d82aece7 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#aebbca758ca45bd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a81c0ae16aae000 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1c88ac359acb4c a, #a1c88ac359acb4c {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a1c88ac359acb4c a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#abeada8e0ea7052 .a741eae826a9b44 {
  overflow: hidden;
}
#abeada8e0ea7052 .a741eae826a9b44 , #abeada8e0ea7052 .a741eae826a9b44 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#abeada8e0ea7052 .a741eae826a9b44:hover , #abeada8e0ea7052 .a741eae826a9b44 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#abeada8e0ea7052 .a22caac756a4ab2 {
  overflow: hidden;
}
#abeada8e0ea7052 .a22caac756a4ab2 , #abeada8e0ea7052 .a22caac756a4ab2 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#abeada8e0ea7052 .a3b5da98a9a673c  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#abeada8e0ea7052 .aa756a1c95a0eb3 , #abeada8e0ea7052 .aa756a1c95a0eb3 a{color: rgba(146, 143, 143, 1);}#abeada8e0ea7052 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#abeada8e0ea7052 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abeada8e0ea7052 .uk-position-center-left-out {
    left: -30px;
  }
  #abeada8e0ea7052 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5488a98f9ad9bd .a9a3ea2658a935e {
  overflow: hidden;
}
#a5488a98f9ad9bd .a9a3ea2658a935e , #a5488a98f9ad9bd .a9a3ea2658a935e > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a5488a98f9ad9bd .a9a3ea2658a935e:hover , #a5488a98f9ad9bd .a9a3ea2658a935e *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5488a98f9ad9bd .a0da7ac07ba5b65 {
  overflow: hidden;
}
#a5488a98f9ad9bd .a0da7ac07ba5b65 , #a5488a98f9ad9bd .a0da7ac07ba5b65 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a5488a98f9ad9bd .a8ed3a3b37a2583  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a5488a98f9ad9bd .a6ba8ac57da55bf , #a5488a98f9ad9bd .a6ba8ac57da55bf a{color: rgba(146, 143, 143, 1);}#a5488a98f9ad9bd .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a5488a98f9ad9bd .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5488a98f9ad9bd .uk-position-center-left-out {
    left: -30px;
  }
  #a5488a98f9ad9bd .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aee17af781af29b .a8e8cace0ea9d48 {
  overflow: hidden;
}
#aee17af781af29b .a8e8cace0ea9d48 , #aee17af781af29b .a8e8cace0ea9d48 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#aee17af781af29b .a8e8cace0ea9d48:hover , #aee17af781af29b .a8e8cace0ea9d48 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#aee17af781af29b .a959eae55eafcbf {
  overflow: hidden;
}
#aee17af781af29b .a959eae55eafcbf , #aee17af781af29b .a959eae55eafcbf > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#aee17af781af29b .a50c1afbdfa20dc  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#aee17af781af29b .acb54a581daa848 , #aee17af781af29b .acb54a581daa848 a{color: rgba(146, 143, 143, 1);}#aee17af781af29b .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#aee17af781af29b .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aee17af781af29b .uk-position-center-left-out {
    left: -30px;
  }
  #aee17af781af29b .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a4211a0a2aa0fc6 .a7006a7222ac92a {
  overflow: hidden;
}
#a4211a0a2aa0fc6 .a7006a7222ac92a , #a4211a0a2aa0fc6 .a7006a7222ac92a > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a4211a0a2aa0fc6 .a7006a7222ac92a:hover , #a4211a0a2aa0fc6 .a7006a7222ac92a *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a4211a0a2aa0fc6 .a4123ae60ea1812 {
  overflow: hidden;
}
#a4211a0a2aa0fc6 .a4123ae60ea1812 , #a4211a0a2aa0fc6 .a4123ae60ea1812 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a4211a0a2aa0fc6 .a43daa7e63a1a8a  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a4211a0a2aa0fc6 .a7841aaacca291f , #a4211a0a2aa0fc6 .a7841aaacca291f a{color: rgba(146, 143, 143, 1);}#a4211a0a2aa0fc6 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a4211a0a2aa0fc6 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a4211a0a2aa0fc6 .uk-position-center-left-out {
    left: -30px;
  }
  #a4211a0a2aa0fc6 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aa8cda7f49a38dc .ac048a9472accf6 {
  overflow: hidden;
}
#aa8cda7f49a38dc .ac048a9472accf6 , #aa8cda7f49a38dc .ac048a9472accf6 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#aa8cda7f49a38dc .ac048a9472accf6:hover , #aa8cda7f49a38dc .ac048a9472accf6 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#aa8cda7f49a38dc .ab20fa3cb7ab9c2 {
  overflow: hidden;
}
#aa8cda7f49a38dc .ab20fa3cb7ab9c2 , #aa8cda7f49a38dc .ab20fa3cb7ab9c2 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#aa8cda7f49a38dc .a3357aae12a08d4  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#aa8cda7f49a38dc .a70abaaf34ae7f7 , #aa8cda7f49a38dc .a70abaaf34ae7f7 a{color: rgba(146, 143, 143, 1);}#aa8cda7f49a38dc .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#aa8cda7f49a38dc .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aa8cda7f49a38dc .uk-position-center-left-out {
    left: -30px;
  }
  #aa8cda7f49a38dc .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7ef6ae3eaa7c75 .a8317acaf8a1597 {
  overflow: hidden;
}
#a7ef6ae3eaa7c75 .a8317acaf8a1597 , #a7ef6ae3eaa7c75 .a8317acaf8a1597 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a7ef6ae3eaa7c75 .a8317acaf8a1597:hover , #a7ef6ae3eaa7c75 .a8317acaf8a1597 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a7ef6ae3eaa7c75 .a602ea6f29a56f4 {
  overflow: hidden;
}
#a7ef6ae3eaa7c75 .a602ea6f29a56f4 , #a7ef6ae3eaa7c75 .a602ea6f29a56f4 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a7ef6ae3eaa7c75 .ab2a3abfa0add0b  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a7ef6ae3eaa7c75 .a399fa7d74a967c , #a7ef6ae3eaa7c75 .a399fa7d74a967c a{color: rgba(146, 143, 143, 1);}#a7ef6ae3eaa7c75 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a7ef6ae3eaa7c75 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a7ef6ae3eaa7c75 .uk-position-center-left-out {
    left: -30px;
  }
  #a7ef6ae3eaa7c75 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aba29a0548a65ed {
  overflow: hidden;
  pointer-events: none;
}
#aba29a0548a65ed > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#aba29a0548a65ed > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#aba29a0548a65ed > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aba29a0548a65ed > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#aba29a0548a65ed > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#aba29a0548a65ed > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav,
#aba29a0548a65ed > .tab-nav,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav,
#aba29a0548a65ed > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f9f9f9;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: dotted;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-right-style: dashed;
  border-left-style: dashed;
  border-top-style: dashed;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav-horizontal,
#aba29a0548a65ed > .tab-nav-horizontal,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aba29a0548a65ed > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aba29a0548a65ed > .tab-nav-horizontal::-webkit-scrollbar,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aba29a0548a65ed > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aba29a0548a65ed > .tab-nav-horizontal.tagScroll,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aba29a0548a65ed > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aba29a0548a65ed > .tab-nav-horizontal.tagScroll li a,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aba29a0548a65ed > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav a,
#aba29a0548a65ed > .tab-nav a,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aba29a0548a65ed > .tab-tabs > .tab-nav a {
  padding: 0 10px;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav li a,
#aba29a0548a65ed > .tab-nav li a,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aba29a0548a65ed > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 40px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 5px;
  margin-left: 20px;
  padding: 0 10px;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav li a svg,
#aba29a0548a65ed > .tab-nav li a svg,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aba29a0548a65ed > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav li a .ap_icon,
#aba29a0548a65ed > .tab-nav li a .ap_icon,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aba29a0548a65ed > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav li a:hover,
#aba29a0548a65ed > .tab-nav li a:hover,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aba29a0548a65ed > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#aba29a0548a65ed > .tab-wrap > div > .tab-nav li.uk-active a,
#aba29a0548a65ed > .tab-nav li.uk-active a,
#aba29a0548a65ed > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aba29a0548a65ed > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#aba29a0548a65ed .layout-left li,
#aba29a0548a65ed .layout-center li,
#aba29a0548a65ed .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aba29a0548a65ed .layout-left li a,
#aba29a0548a65ed .layout-center li a,
#aba29a0548a65ed .layout-right li a {
  height: 100%;
}
#aba29a0548a65ed > .tab-tabs .layout-left {
  text-align: left;
}
#aba29a0548a65ed > .tab-tabs .layout-center {
  text-align: center;
}
#aba29a0548a65ed > .tab-tabs .layout-right {
  text-align: right;
}
#aba29a0548a65ed .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#aba29a0548a65ed .tab-content-wrap {
  background-color: transparent;
}
#aba29a0548a65ed .tab-contents,
#aba29a0548a65ed .tab-contents-wrap {
  pointer-events: none;
}
#aba29a0548a65ed .tab-content,
#aba29a0548a65ed .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aba29a0548a65ed .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aba29a0548a65ed .tab-wrap .tab-contents {
  height: 100%;
}
#aba29a0548a65ed .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#aba29a0548a65ed .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#aba29a0548a65ed .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a8553a3117a7dd3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aad96ab712a5a17 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#aee1caeb6fa0d26 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ad364a767fab1ee .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad364a767fab1ee .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad364a767fab1ee .ap-icon {
  margin-right: 6px;
}
#ad364a767fab1ee .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ad364a767fab1ee .menu-list > li.icon-bottom > a,
#ad364a767fab1ee .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad364a767fab1ee .menu-list > li.icon-bottom > a .ap-icon,
#ad364a767fab1ee .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad364a767fab1ee .menu-list > li.icon-bottom > a .ap-icon svg,
#ad364a767fab1ee .menu-list > li.icon-top > a .ap-icon svg,
#ad364a767fab1ee .menu-list > li.icon-bottom > a .ap-icon img,
#ad364a767fab1ee .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad364a767fab1ee .menu-list > li.icon-right > a .ap-icon,
#ad364a767fab1ee .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad364a767fab1ee .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad364a767fab1ee .menu-list > li:hover > a,
#ad364a767fab1ee .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ad364a767fab1ee .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ad364a767fab1ee .menu-list ul,
#ad364a767fab1ee .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad364a767fab1ee .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ad364a767fab1ee .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad364a767fab1ee .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad364a767fab1ee .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1b5fac1adae057 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1b5fac1adae057 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1b5fac1adae057 .ap-icon {
  margin-right: 6px;
}
#a1b5fac1adae057 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a1b5fac1adae057 .menu-list > li.icon-bottom > a,
#a1b5fac1adae057 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1b5fac1adae057 .menu-list > li.icon-bottom > a .ap-icon,
#a1b5fac1adae057 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1b5fac1adae057 .menu-list > li.icon-bottom > a .ap-icon svg,
#a1b5fac1adae057 .menu-list > li.icon-top > a .ap-icon svg,
#a1b5fac1adae057 .menu-list > li.icon-bottom > a .ap-icon img,
#a1b5fac1adae057 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1b5fac1adae057 .menu-list > li.icon-right > a .ap-icon,
#a1b5fac1adae057 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1b5fac1adae057 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1b5fac1adae057 .menu-list > li:hover > a,
#a1b5fac1adae057 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1b5fac1adae057 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1b5fac1adae057 .menu-list ul,
#a1b5fac1adae057 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1b5fac1adae057 .menu-list ul {
  top: 146px;
  left: 50%;
  transform: translateX(-50%);
}
#a1b5fac1adae057 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1b5fac1adae057 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1b5fac1adae057 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab088a03efac3c4 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab088a03efac3c4 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab088a03efac3c4 .ap-icon {
  margin-right: 6px;
}
#ab088a03efac3c4 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 150px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#ab088a03efac3c4 .menu-list > li.icon-bottom > a,
#ab088a03efac3c4 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab088a03efac3c4 .menu-list > li.icon-bottom > a .ap-icon,
#ab088a03efac3c4 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab088a03efac3c4 .menu-list > li.icon-bottom > a .ap-icon svg,
#ab088a03efac3c4 .menu-list > li.icon-top > a .ap-icon svg,
#ab088a03efac3c4 .menu-list > li.icon-bottom > a .ap-icon img,
#ab088a03efac3c4 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab088a03efac3c4 .menu-list > li.icon-right > a .ap-icon,
#ab088a03efac3c4 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab088a03efac3c4 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab088a03efac3c4 .menu-list > li:hover > a,
#ab088a03efac3c4 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab088a03efac3c4 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#ab088a03efac3c4 .menu-list ul,
#ab088a03efac3c4 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab088a03efac3c4 .menu-list ul {
  top: 183px;
  left: 50%;
  transform: translateX(-50%);
}
#ab088a03efac3c4 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab088a03efac3c4 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab088a03efac3c4 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4a25a497faf82d .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a4a25a497faf82d .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a4a25a497faf82d .ap-icon {
  margin-right: 6px;
}
#a4a25a497faf82d .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a4a25a497faf82d .menu-list > li.icon-bottom > a,
#a4a25a497faf82d .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a4a25a497faf82d .menu-list > li.icon-bottom > a .ap-icon,
#a4a25a497faf82d .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a4a25a497faf82d .menu-list > li.icon-bottom > a .ap-icon svg,
#a4a25a497faf82d .menu-list > li.icon-top > a .ap-icon svg,
#a4a25a497faf82d .menu-list > li.icon-bottom > a .ap-icon img,
#a4a25a497faf82d .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a4a25a497faf82d .menu-list > li.icon-right > a .ap-icon,
#a4a25a497faf82d .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a4a25a497faf82d .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a4a25a497faf82d .menu-list > li:hover > a,
#a4a25a497faf82d .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a4a25a497faf82d .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a4a25a497faf82d .menu-list ul,
#a4a25a497faf82d .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4a25a497faf82d .menu-list ul {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
#a4a25a497faf82d .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4a25a497faf82d .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4a25a497faf82d .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aba1aa539ea7f2c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
@media (min-width: 1200px) {
  #a874ca1a7ea4a77 .uk-container {
    padding: 0 60px;
  }
}
@media (min-width: 980px) {
  #a874ca1a7ea4a77 .sidebar {
    width: 28.5%;
    padding-left: 32px;
    border-left: 1px solid #ececec;
    margin-left: 32px;
  }
}
#a874ca1a7ea4a77 .sidebar .uk-h3 {
  position: relative;
  padding-bottom: 12px;
  font-size: 18px;
}
#a874ca1a7ea4a77 .sidebar .uk-h3:before {
  content: ' ';
  position: absolute;
  width: 3px;
  height: 100%;
  left: -33px;
  top: 0;
  background-color: #238bcd;
}
#a874ca1a7ea4a77 .sidebar .uk-h3:after {
  content: ' ';
  position: absolute;
  width: 35px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #666666;
}
#a874ca1a7ea4a77 .uk-list li::before {
  color: #238bcd;
}
#a874ca1a7ea4a77 .uk-list a {
  color: #4c4c4c;
}
#a874ca1a7ea4a77 .uk-list a.active,
#a874ca1a7ea4a77 .uk-list a:hover {
  color: #238bcd;
  text-decoration: none;
}
#a874ca1a7ea4a77 .post-sidebar-image {
  width: 90px;
  height: auto;
  margin-right: 15px;
}
#a874ca1a7ea4a77 .tag {
  display: inline-block;
  margin: 0 8px 10px 0;
  border: 1px solid #ececec;
}
#a874ca1a7ea4a77 .tag a {
  line-height: 32px;
  padding: 0 12px;
  font-size: 14px;
  color: #666666;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a0577ac268afc23 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a7e15a8a1ea530a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a4ae7a2079a3a02 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6e87a1959a90e8 a, #a6e87a1959a90e8 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a6e87a1959a90e8 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#af189a8147af5e7 .gallery-items-wrap {
  margin-left: -15px;
}
#af189a8147af5e7 .filter.active {
  background-color: #238bcd;
}
#af189a8147af5e7 .gallery-item {
  width: 442px;
  margin: 0 0 15px 15px;
  float: left;
  list-style: none;
  position: relative;
}
#af189a8147af5e7 .text-style-3 figure {
  height: nullpx;
}
#af189a8147af5e7 .gallery-item figcaption {
  background-color: rgba(74, 74, 74, 0.1);
}
#af189a8147af5e7 .gallery-item h3 {
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  text-align: left;
  font-family: inherit;
  color: #ffffff;
}
#a78d0a44d4a3428 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac805a5809ab198 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ac649a7158a03fe > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ae49fa0a17a2645 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae49fa0a17a2645 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae49fa0a17a2645 .ap-icon {
  margin-right: 6px;
}
#ae49fa0a17a2645 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ae49fa0a17a2645 .menu-list > li.icon-bottom > a,
#ae49fa0a17a2645 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae49fa0a17a2645 .menu-list > li.icon-bottom > a .ap-icon,
#ae49fa0a17a2645 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae49fa0a17a2645 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae49fa0a17a2645 .menu-list > li.icon-top > a .ap-icon svg,
#ae49fa0a17a2645 .menu-list > li.icon-bottom > a .ap-icon img,
#ae49fa0a17a2645 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae49fa0a17a2645 .menu-list > li.icon-right > a .ap-icon,
#ae49fa0a17a2645 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae49fa0a17a2645 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae49fa0a17a2645 .menu-list > li:hover > a,
#ae49fa0a17a2645 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae49fa0a17a2645 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae49fa0a17a2645 .menu-list ul,
#ae49fa0a17a2645 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae49fa0a17a2645 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ae49fa0a17a2645 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae49fa0a17a2645 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae49fa0a17a2645 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae964a2ef2a7305 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae964a2ef2a7305 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae964a2ef2a7305 .ap-icon {
  margin-right: 6px;
}
#ae964a2ef2a7305 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ae964a2ef2a7305 .menu-list > li.icon-bottom > a,
#ae964a2ef2a7305 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae964a2ef2a7305 .menu-list > li.icon-bottom > a .ap-icon,
#ae964a2ef2a7305 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae964a2ef2a7305 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae964a2ef2a7305 .menu-list > li.icon-top > a .ap-icon svg,
#ae964a2ef2a7305 .menu-list > li.icon-bottom > a .ap-icon img,
#ae964a2ef2a7305 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae964a2ef2a7305 .menu-list > li.icon-right > a .ap-icon,
#ae964a2ef2a7305 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae964a2ef2a7305 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae964a2ef2a7305 .menu-list > li:hover > a,
#ae964a2ef2a7305 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae964a2ef2a7305 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae964a2ef2a7305 .menu-list ul,
#ae964a2ef2a7305 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae964a2ef2a7305 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#ae964a2ef2a7305 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae964a2ef2a7305 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae964a2ef2a7305 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#affcdac750ab548 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#affcdac750ab548 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#affcdac750ab548 .ap-icon {
  margin-right: 6px;
}
#affcdac750ab548 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#affcdac750ab548 .menu-list > li.icon-bottom > a,
#affcdac750ab548 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#affcdac750ab548 .menu-list > li.icon-bottom > a .ap-icon,
#affcdac750ab548 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#affcdac750ab548 .menu-list > li.icon-bottom > a .ap-icon svg,
#affcdac750ab548 .menu-list > li.icon-top > a .ap-icon svg,
#affcdac750ab548 .menu-list > li.icon-bottom > a .ap-icon img,
#affcdac750ab548 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#affcdac750ab548 .menu-list > li.icon-right > a .ap-icon,
#affcdac750ab548 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#affcdac750ab548 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#affcdac750ab548 .menu-list > li:hover > a,
#affcdac750ab548 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#affcdac750ab548 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#affcdac750ab548 .menu-list ul,
#affcdac750ab548 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#affcdac750ab548 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#affcdac750ab548 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#affcdac750ab548 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#affcdac750ab548 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae3b5af705adee9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae3b5af705adee9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae3b5af705adee9 .ap-icon {
  margin-right: 6px;
}
#ae3b5af705adee9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#ae3b5af705adee9 .menu-list > li.icon-bottom > a,
#ae3b5af705adee9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae3b5af705adee9 .menu-list > li.icon-bottom > a .ap-icon,
#ae3b5af705adee9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae3b5af705adee9 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae3b5af705adee9 .menu-list > li.icon-top > a .ap-icon svg,
#ae3b5af705adee9 .menu-list > li.icon-bottom > a .ap-icon img,
#ae3b5af705adee9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae3b5af705adee9 .menu-list > li.icon-right > a .ap-icon,
#ae3b5af705adee9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae3b5af705adee9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae3b5af705adee9 .menu-list > li:hover > a,
#ae3b5af705adee9 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae3b5af705adee9 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#ae3b5af705adee9 .menu-list ul,
#ae3b5af705adee9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae3b5af705adee9 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#ae3b5af705adee9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae3b5af705adee9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae3b5af705adee9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#affd9ae8d0a747c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#affd9ae8d0a747c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#affd9ae8d0a747c .ap-icon {
  margin-right: 6px;
}
#affd9ae8d0a747c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#affd9ae8d0a747c .menu-list > li.icon-bottom > a,
#affd9ae8d0a747c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#affd9ae8d0a747c .menu-list > li.icon-bottom > a .ap-icon,
#affd9ae8d0a747c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#affd9ae8d0a747c .menu-list > li.icon-bottom > a .ap-icon svg,
#affd9ae8d0a747c .menu-list > li.icon-top > a .ap-icon svg,
#affd9ae8d0a747c .menu-list > li.icon-bottom > a .ap-icon img,
#affd9ae8d0a747c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#affd9ae8d0a747c .menu-list > li.icon-right > a .ap-icon,
#affd9ae8d0a747c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#affd9ae8d0a747c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#affd9ae8d0a747c .menu-list > li:hover > a,
#affd9ae8d0a747c .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#affd9ae8d0a747c .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#affd9ae8d0a747c .menu-list ul,
#affd9ae8d0a747c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#affd9ae8d0a747c .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#affd9ae8d0a747c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#affd9ae8d0a747c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#affd9ae8d0a747c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8b8cac170a5891 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab636af990a0ebb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a6100a01e5ab3c9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#adcf8ac347a5c4d > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a47adacb42af738 a, #a47adacb42af738 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a47adacb42af738 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a777aa71f3a4395 .a70afaf71fa5c2d {
  overflow: hidden;
}
#a777aa71f3a4395 .a70afaf71fa5c2d , #a777aa71f3a4395 .a70afaf71fa5c2d > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a777aa71f3a4395 .a70afaf71fa5c2d:hover , #a777aa71f3a4395 .a70afaf71fa5c2d *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a777aa71f3a4395 .a190aa74a7abc91 {
  overflow: hidden;
}
#a777aa71f3a4395 .a190aa74a7abc91 , #a777aa71f3a4395 .a190aa74a7abc91 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a777aa71f3a4395 .a6696a1767aa161  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a777aa71f3a4395 .a8cf2aaaa5a52cb , #a777aa71f3a4395 .a8cf2aaaa5a52cb a{color: rgba(146, 143, 143, 1);}#a777aa71f3a4395 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a777aa71f3a4395 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a777aa71f3a4395 .uk-position-center-left-out {
    left: -30px;
  }
  #a777aa71f3a4395 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#afd68aa241a7de3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abcffae21da4461 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a3a58aea4ea540e > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a5783aa30daca8c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5783aa30daca8c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5783aa30daca8c .ap-icon {
  margin-right: 6px;
}
#a5783aa30daca8c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a5783aa30daca8c .menu-list > li.icon-bottom > a,
#a5783aa30daca8c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5783aa30daca8c .menu-list > li.icon-bottom > a .ap-icon,
#a5783aa30daca8c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5783aa30daca8c .menu-list > li.icon-bottom > a .ap-icon svg,
#a5783aa30daca8c .menu-list > li.icon-top > a .ap-icon svg,
#a5783aa30daca8c .menu-list > li.icon-bottom > a .ap-icon img,
#a5783aa30daca8c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5783aa30daca8c .menu-list > li.icon-right > a .ap-icon,
#a5783aa30daca8c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5783aa30daca8c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5783aa30daca8c .menu-list > li:hover > a,
#a5783aa30daca8c .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5783aa30daca8c .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5783aa30daca8c .menu-list ul,
#a5783aa30daca8c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5783aa30daca8c .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a5783aa30daca8c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5783aa30daca8c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5783aa30daca8c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a848daa549a686f .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a848daa549a686f .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a848daa549a686f .ap-icon {
  margin-right: 6px;
}
#a848daa549a686f .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a848daa549a686f .menu-list > li.icon-bottom > a,
#a848daa549a686f .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a848daa549a686f .menu-list > li.icon-bottom > a .ap-icon,
#a848daa549a686f .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a848daa549a686f .menu-list > li.icon-bottom > a .ap-icon svg,
#a848daa549a686f .menu-list > li.icon-top > a .ap-icon svg,
#a848daa549a686f .menu-list > li.icon-bottom > a .ap-icon img,
#a848daa549a686f .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a848daa549a686f .menu-list > li.icon-right > a .ap-icon,
#a848daa549a686f .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a848daa549a686f .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a848daa549a686f .menu-list > li:hover > a,
#a848daa549a686f .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a848daa549a686f .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a848daa549a686f .menu-list ul,
#a848daa549a686f .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a848daa549a686f .menu-list ul {
  top: 146px;
  left: 50%;
  transform: translateX(-50%);
}
#a848daa549a686f .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a848daa549a686f .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a848daa549a686f .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#affd7a0584a7415 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#affd7a0584a7415 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#affd7a0584a7415 .ap-icon {
  margin-right: 6px;
}
#affd7a0584a7415 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 150px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#affd7a0584a7415 .menu-list > li.icon-bottom > a,
#affd7a0584a7415 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#affd7a0584a7415 .menu-list > li.icon-bottom > a .ap-icon,
#affd7a0584a7415 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#affd7a0584a7415 .menu-list > li.icon-bottom > a .ap-icon svg,
#affd7a0584a7415 .menu-list > li.icon-top > a .ap-icon svg,
#affd7a0584a7415 .menu-list > li.icon-bottom > a .ap-icon img,
#affd7a0584a7415 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#affd7a0584a7415 .menu-list > li.icon-right > a .ap-icon,
#affd7a0584a7415 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#affd7a0584a7415 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#affd7a0584a7415 .menu-list > li:hover > a,
#affd7a0584a7415 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#affd7a0584a7415 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#affd7a0584a7415 .menu-list ul,
#affd7a0584a7415 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#affd7a0584a7415 .menu-list ul {
  top: 183px;
  left: 50%;
  transform: translateX(-50%);
}
#affd7a0584a7415 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#affd7a0584a7415 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#affd7a0584a7415 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a126dae4a1a6c13 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a126dae4a1a6c13 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a126dae4a1a6c13 .ap-icon {
  margin-right: 6px;
}
#a126dae4a1a6c13 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a126dae4a1a6c13 .menu-list > li.icon-bottom > a,
#a126dae4a1a6c13 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a126dae4a1a6c13 .menu-list > li.icon-bottom > a .ap-icon,
#a126dae4a1a6c13 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a126dae4a1a6c13 .menu-list > li.icon-bottom > a .ap-icon svg,
#a126dae4a1a6c13 .menu-list > li.icon-top > a .ap-icon svg,
#a126dae4a1a6c13 .menu-list > li.icon-bottom > a .ap-icon img,
#a126dae4a1a6c13 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a126dae4a1a6c13 .menu-list > li.icon-right > a .ap-icon,
#a126dae4a1a6c13 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a126dae4a1a6c13 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a126dae4a1a6c13 .menu-list > li:hover > a,
#a126dae4a1a6c13 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a126dae4a1a6c13 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a126dae4a1a6c13 .menu-list ul,
#a126dae4a1a6c13 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a126dae4a1a6c13 .menu-list ul {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
#a126dae4a1a6c13 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a126dae4a1a6c13 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a126dae4a1a6c13 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa9d0aad29a283f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a578da147da0dac .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ae1bca345faa6a7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aaef4a1936a5da3 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a349ba19ffaa47f a, #a349ba19ffaa47f {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a349ba19ffaa47f a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a603eae832a418e .a74b3ac402a4cdf {
  overflow: hidden;
}
#a603eae832a418e .a74b3ac402a4cdf , #a603eae832a418e .a74b3ac402a4cdf > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a603eae832a418e .a74b3ac402a4cdf:hover , #a603eae832a418e .a74b3ac402a4cdf *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a603eae832a418e .a1283a9a78aaf2b {
  overflow: hidden;
}
#a603eae832a418e .a1283a9a78aaf2b , #a603eae832a418e .a1283a9a78aaf2b > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;}#a603eae832a418e .a1c5eac56ea939b  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a603eae832a418e .a011ea2f17ac18b , #a603eae832a418e .a011ea2f17ac18b a{color: rgba(146, 143, 143, 1);}#a603eae832a418e .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a603eae832a418e .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a603eae832a418e .uk-position-center-left-out {
    left: -30px;
  }
  #a603eae832a418e .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1290adc48a5ab5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aabf8a5436afacb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0262a6d7ca9e1d > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#add6bab1bfa7289 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a95f8a0c0aa13b4 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a95f8a0c0aa13b4 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a95f8a0c0aa13b4 .ap-icon {
  margin-right: 6px;
}
#a95f8a0c0aa13b4 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
  height: nullpx;
}
#a95f8a0c0aa13b4 .menu-list > li.icon-bottom > a,
#a95f8a0c0aa13b4 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a95f8a0c0aa13b4 .menu-list > li.icon-bottom > a .ap-icon,
#a95f8a0c0aa13b4 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a95f8a0c0aa13b4 .menu-list > li.icon-bottom > a .ap-icon svg,
#a95f8a0c0aa13b4 .menu-list > li.icon-top > a .ap-icon svg,
#a95f8a0c0aa13b4 .menu-list > li.icon-bottom > a .ap-icon img,
#a95f8a0c0aa13b4 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a95f8a0c0aa13b4 .menu-list > li.icon-right > a .ap-icon,
#a95f8a0c0aa13b4 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a95f8a0c0aa13b4 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a95f8a0c0aa13b4 .menu-list > li:hover > a,
#a95f8a0c0aa13b4 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a95f8a0c0aa13b4 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a95f8a0c0aa13b4 .menu-list ul,
#a95f8a0c0aa13b4 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a95f8a0c0aa13b4 .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#a95f8a0c0aa13b4 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a95f8a0c0aa13b4 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a95f8a0c0aa13b4 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a767eaa4afa6039 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a767eaa4afa6039 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a767eaa4afa6039 .ap-icon {
  margin-right: 6px;
}
#a767eaa4afa6039 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#a767eaa4afa6039 .menu-list > li.icon-bottom > a,
#a767eaa4afa6039 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a767eaa4afa6039 .menu-list > li.icon-bottom > a .ap-icon,
#a767eaa4afa6039 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a767eaa4afa6039 .menu-list > li.icon-bottom > a .ap-icon svg,
#a767eaa4afa6039 .menu-list > li.icon-top > a .ap-icon svg,
#a767eaa4afa6039 .menu-list > li.icon-bottom > a .ap-icon img,
#a767eaa4afa6039 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a767eaa4afa6039 .menu-list > li.icon-right > a .ap-icon,
#a767eaa4afa6039 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a767eaa4afa6039 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a767eaa4afa6039 .menu-list > li:hover > a,
#a767eaa4afa6039 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a767eaa4afa6039 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a767eaa4afa6039 .menu-list ul,
#a767eaa4afa6039 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a767eaa4afa6039 .menu-list ul {
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
}
#a767eaa4afa6039 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a767eaa4afa6039 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a767eaa4afa6039 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a437da7f32a718a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a437da7f32a718a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a437da7f32a718a .ap-icon {
  margin-right: 6px;
}
#a437da7f32a718a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 120px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a437da7f32a718a .menu-list > li.icon-bottom > a,
#a437da7f32a718a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a437da7f32a718a .menu-list > li.icon-bottom > a .ap-icon,
#a437da7f32a718a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a437da7f32a718a .menu-list > li.icon-bottom > a .ap-icon svg,
#a437da7f32a718a .menu-list > li.icon-top > a .ap-icon svg,
#a437da7f32a718a .menu-list > li.icon-bottom > a .ap-icon img,
#a437da7f32a718a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a437da7f32a718a .menu-list > li.icon-right > a .ap-icon,
#a437da7f32a718a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a437da7f32a718a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a437da7f32a718a .menu-list > li:hover > a,
#a437da7f32a718a .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a437da7f32a718a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a437da7f32a718a .menu-list ul,
#a437da7f32a718a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a437da7f32a718a .menu-list ul {
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
}
#a437da7f32a718a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a437da7f32a718a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a437da7f32a718a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aaa13a2651aee30 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a6019a8f73afc0d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aa773a4d98ab9ea > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a90d6aa40ca07c3 a, #a90d6aa40ca07c3 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a90d6aa40ca07c3 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a931dafa59a2b02 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6001ad547a7b09 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a6001ad547a7b09 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a2a79a77b8a8f0a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a27c2a3253a83b7 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a27c2a3253a83b7 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#aed98a44b1a65fa .a5f1ba2b90ac49b {
  overflow: hidden;
}
#aed98a44b1a65fa .a5f1ba2b90ac49b , #aed98a44b1a65fa .a5f1ba2b90ac49b > * {
        font-weight: normal;
        font-style: normal;
    font-size: 17px;text-align: center;font-family: inherit;color: rgba(34, 34, 34, 1);}#aed98a44b1a65fa .a5f1ba2b90ac49b:hover , #aed98a44b1a65fa .a5f1ba2b90ac49b *:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 122, 195, 1);}#aed98a44b1a65fa .a6d59aa348a0b32 > .ele-wrap {background-color: rgba(238, 238, 238, 0.8);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aed98a44b1a65fa .a8b34a00e2a7890 {
  overflow: hidden;
}
#aed98a44b1a65fa .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#aed98a44b1a65fa .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aed98a44b1a65fa .uk-position-center-left-out {
    left: -30px;
  }
  #aed98a44b1a65fa .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a19f8a6c80a9637 .uk-grid {
  margin-left: -15px;
}
#a19f8a6c80a9637 .uk-grid > * {
  padding-left: 15px;
}
#a19f8a6c80a9637 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a19f8a6c80a9637 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a19f8a6c80a9637 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a19f8a6c80a9637 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a19f8a6c80a9637 .article .info p {
  margin: 10px 0 10px;
}
#a19f8a6c80a9637 .article svg {
  fill: currentColor;
}
#a19f8a6c80a9637 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a19f8a6c80a9637 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a19f8a6c80a9637 .article.list-icon .info {
  padding-left: 25px;
}
#a19f8a6c80a9637 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a19f8a6c80a9637 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a19f8a6c80a9637 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a19f8a6c80a9637 .article:hover .title {
  color: #238bcd;
}
#a19f8a6c80a9637 .article:hover .datetime {
  color: #238bcd;
}
#a19f8a6c80a9637 .article:hover .category {
  color: #b6b6b6;
}
#a19f8a6c80a9637 .article:hover .abstract {
  color: #b6b6b6;
}
#a19f8a6c80a9637 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a19f8a6c80a9637 .article:hover .list_icon {
  color: #b6b6b6;
}
#a19fdaa279a6193 .uk-grid {
  margin-left: -15px;
}
#a19fdaa279a6193 .uk-grid > * {
  padding-left: 15px;
}
#a19fdaa279a6193 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a19fdaa279a6193 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a19fdaa279a6193 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a19fdaa279a6193 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a19fdaa279a6193 .article .info p {
  margin: 10px 0 10px;
}
#a19fdaa279a6193 .article svg {
  fill: currentColor;
}
#a19fdaa279a6193 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a19fdaa279a6193 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a19fdaa279a6193 .article.list-icon .info {
  padding-left: 25px;
}
#a19fdaa279a6193 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a19fdaa279a6193 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a19fdaa279a6193 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a19fdaa279a6193 .article:hover .title {
  color: #238bcd;
}
#a19fdaa279a6193 .article:hover .datetime {
  color: #238bcd;
}
#a19fdaa279a6193 .article:hover .category {
  color: #b6b6b6;
}
#a19fdaa279a6193 .article:hover .abstract {
  color: #b6b6b6;
}
#a19fdaa279a6193 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a19fdaa279a6193 .article:hover .list_icon {
  color: #b6b6b6;
}
#a6fd1ad053a074e .uk-grid {
  margin-left: -15px;
}
#a6fd1ad053a074e .uk-grid > * {
  padding-left: 15px;
}
#a6fd1ad053a074e .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6fd1ad053a074e .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a6fd1ad053a074e .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a6fd1ad053a074e .article .info {
  padding: 8px 10px;
  position: relative;
}
#a6fd1ad053a074e .article .info p {
  margin: 10px 0 10px;
}
#a6fd1ad053a074e .article svg {
  fill: currentColor;
}
#a6fd1ad053a074e .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a6fd1ad053a074e .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a6fd1ad053a074e .article.list-icon .info {
  padding-left: 25px;
}
#a6fd1ad053a074e .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a6fd1ad053a074e .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a6fd1ad053a074e .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a6fd1ad053a074e .article:hover .title {
  color: #238bcd;
}
#a6fd1ad053a074e .article:hover .datetime {
  color: #238bcd;
}
#a6fd1ad053a074e .article:hover .category {
  color: #b6b6b6;
}
#a6fd1ad053a074e .article:hover .abstract {
  color: #b6b6b6;
}
#a6fd1ad053a074e .article:hover .btn_icon {
  color: #b6b6b6;
}
#a6fd1ad053a074e .article:hover .list_icon {
  color: #b6b6b6;
}
#a555da7494a3a67 {
  overflow: hidden;
  pointer-events: none;
}
#a555da7494a3a67 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a555da7494a3a67 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a555da7494a3a67 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a555da7494a3a67 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a555da7494a3a67 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a555da7494a3a67 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav,
#a555da7494a3a67 > .tab-nav,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a555da7494a3a67 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav-horizontal,
#a555da7494a3a67 > .tab-nav-horizontal,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a555da7494a3a67 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a555da7494a3a67 > .tab-nav-horizontal::-webkit-scrollbar,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a555da7494a3a67 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a555da7494a3a67 > .tab-nav-horizontal.tagScroll,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a555da7494a3a67 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a555da7494a3a67 > .tab-nav-horizontal.tagScroll li a,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a555da7494a3a67 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav a,
#a555da7494a3a67 > .tab-nav a,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a555da7494a3a67 > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav li a,
#a555da7494a3a67 > .tab-nav li a,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a555da7494a3a67 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav li a svg,
#a555da7494a3a67 > .tab-nav li a svg,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a555da7494a3a67 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a555da7494a3a67 > .tab-nav li a .ap_icon,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a555da7494a3a67 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav li a:hover,
#a555da7494a3a67 > .tab-nav li a:hover,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a555da7494a3a67 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#a555da7494a3a67 > .tab-wrap > div > .tab-nav li.uk-active a,
#a555da7494a3a67 > .tab-nav li.uk-active a,
#a555da7494a3a67 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a555da7494a3a67 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#a555da7494a3a67 .layout-left li,
#a555da7494a3a67 .layout-center li,
#a555da7494a3a67 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a555da7494a3a67 .layout-left li a,
#a555da7494a3a67 .layout-center li a,
#a555da7494a3a67 .layout-right li a {
  height: 100%;
}
#a555da7494a3a67 > .tab-tabs .layout-left {
  text-align: left;
}
#a555da7494a3a67 > .tab-tabs .layout-center {
  text-align: center;
}
#a555da7494a3a67 > .tab-tabs .layout-right {
  text-align: right;
}
#a555da7494a3a67 .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#a555da7494a3a67 .tab-content-wrap {
  background-color: transparent;
}
#a555da7494a3a67 .tab-contents,
#a555da7494a3a67 .tab-contents-wrap {
  pointer-events: none;
}
#a555da7494a3a67 .tab-content,
#a555da7494a3a67 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a555da7494a3a67 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a555da7494a3a67 .tab-wrap .tab-contents {
  height: 100%;
}
#a555da7494a3a67 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a555da7494a3a67 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a555da7494a3a67 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a47c1a159da5091 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a47c1a159da5091 .uk-grid {
  margin-left: -4px;
}
#a47c1a159da5091 .uk-grid > * {
  padding-left: 4px;
}
#a47c1a159da5091 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a47c1a159da5091 .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
  border-top-width: 1px;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a47c1a159da5091 .uk-card-media-top {
  overflow: hidden;
}
#a47c1a159da5091 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a47c1a159da5091 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a47c1a159da5091 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a47c1a159da5091 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a47c1a159da5091 .uk-card-body {
  padding: 15px 10px 8px;
}
#a47c1a159da5091 hr {
  border-top-color: rgba(180, 180, 180, 0.1);
  margin: 0 0 10px;
}
#a47c1a159da5091 .uk-button {
  border: 1px solid #ececec;
}
#a47c1a159da5091 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #000000;
}
#a47c1a159da5091 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #9b9b9b;
}
#a47c1a159da5091 .uk-card:hover {
  background-color: #ffffff;
}
#a47c1a159da5091 .uk-card:hover .title {
  color: #4a90e2;
}
#a47c1a159da5091 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a47c1a159da5091 .uk-card:hover .img {
  transform: scale(1.2);
}
#a47c1a159da5091 .uk-card:hover .abstract {
  color: #4a90e2;
}
#a47c1a159da5091 .uk-card:hover .datetime {
  color: #d3b267;
}
#a47c1a159da5091 .uk-card:hover .category {
  color: #d3b267;
}
#a47c1a159da5091 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a9254ad28ea9cc8 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a9254ad28ea9cc8 .uk-grid {
  margin-left: -4px;
}
#a9254ad28ea9cc8 .uk-grid > * {
  padding-left: 4px;
}
#a9254ad28ea9cc8 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a9254ad28ea9cc8 .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
  border-top-width: 1px;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a9254ad28ea9cc8 .uk-card-media-top {
  overflow: hidden;
}
#a9254ad28ea9cc8 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a9254ad28ea9cc8 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a9254ad28ea9cc8 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a9254ad28ea9cc8 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a9254ad28ea9cc8 .uk-card-body {
  padding: 15px 10px 8px;
}
#a9254ad28ea9cc8 hr {
  border-top-color: rgba(180, 180, 180, 0.1);
  margin: 0 0 10px;
}
#a9254ad28ea9cc8 .uk-button {
  border: 1px solid #ececec;
}
#a9254ad28ea9cc8 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #000000;
}
#a9254ad28ea9cc8 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #9b9b9b;
}
#a9254ad28ea9cc8 .uk-card:hover {
  background-color: #ffffff;
}
#a9254ad28ea9cc8 .uk-card:hover .title {
  color: #4a90e2;
}
#a9254ad28ea9cc8 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a9254ad28ea9cc8 .uk-card:hover .img {
  transform: scale(1.2);
}
#a9254ad28ea9cc8 .uk-card:hover .abstract {
  color: #4a90e2;
}
#a9254ad28ea9cc8 .uk-card:hover .datetime {
  color: #d3b267;
}
#a9254ad28ea9cc8 .uk-card:hover .category {
  color: #d3b267;
}
#a9254ad28ea9cc8 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a214aa937eaf69b {
  overflow: hidden;
  pointer-events: none;
}
#a214aa937eaf69b > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a214aa937eaf69b > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a214aa937eaf69b > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a214aa937eaf69b > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a214aa937eaf69b > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a214aa937eaf69b > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav,
#a214aa937eaf69b > .tab-nav,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav,
#a214aa937eaf69b > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav-horizontal,
#a214aa937eaf69b > .tab-nav-horizontal,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a214aa937eaf69b > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a214aa937eaf69b > .tab-nav-horizontal::-webkit-scrollbar,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a214aa937eaf69b > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a214aa937eaf69b > .tab-nav-horizontal.tagScroll,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a214aa937eaf69b > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a214aa937eaf69b > .tab-nav-horizontal.tagScroll li a,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a214aa937eaf69b > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav a,
#a214aa937eaf69b > .tab-nav a,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a214aa937eaf69b > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav li a,
#a214aa937eaf69b > .tab-nav li a,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a214aa937eaf69b > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav li a svg,
#a214aa937eaf69b > .tab-nav li a svg,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a214aa937eaf69b > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav li a .ap_icon,
#a214aa937eaf69b > .tab-nav li a .ap_icon,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a214aa937eaf69b > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav li a:hover,
#a214aa937eaf69b > .tab-nav li a:hover,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a214aa937eaf69b > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#a214aa937eaf69b > .tab-wrap > div > .tab-nav li.uk-active a,
#a214aa937eaf69b > .tab-nav li.uk-active a,
#a214aa937eaf69b > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a214aa937eaf69b > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#a214aa937eaf69b .layout-left li,
#a214aa937eaf69b .layout-center li,
#a214aa937eaf69b .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a214aa937eaf69b .layout-left li a,
#a214aa937eaf69b .layout-center li a,
#a214aa937eaf69b .layout-right li a {
  height: 100%;
}
#a214aa937eaf69b > .tab-tabs .layout-left {
  text-align: left;
}
#a214aa937eaf69b > .tab-tabs .layout-center {
  text-align: center;
}
#a214aa937eaf69b > .tab-tabs .layout-right {
  text-align: right;
}
#a214aa937eaf69b .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#a214aa937eaf69b .tab-content-wrap {
  background-color: transparent;
}
#a214aa937eaf69b .tab-contents,
#a214aa937eaf69b .tab-contents-wrap {
  pointer-events: none;
}
#a214aa937eaf69b .tab-content,
#a214aa937eaf69b .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a214aa937eaf69b .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a214aa937eaf69b .tab-wrap .tab-contents {
  height: 100%;
}
#a214aa937eaf69b .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a214aa937eaf69b .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a214aa937eaf69b .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ad5dfad862a6a80 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1b12af53da94ec > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a9136a8a1ea3826 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aa286ac7e4a70ca .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa286ac7e4a70ca .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa286ac7e4a70ca .ap-icon {
  margin-right: 6px;
}
#aa286ac7e4a70ca .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#aa286ac7e4a70ca .menu-list > li.icon-bottom > a,
#aa286ac7e4a70ca .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa286ac7e4a70ca .menu-list > li.icon-bottom > a .ap-icon,
#aa286ac7e4a70ca .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa286ac7e4a70ca .menu-list > li.icon-bottom > a .ap-icon svg,
#aa286ac7e4a70ca .menu-list > li.icon-top > a .ap-icon svg,
#aa286ac7e4a70ca .menu-list > li.icon-bottom > a .ap-icon img,
#aa286ac7e4a70ca .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa286ac7e4a70ca .menu-list > li.icon-right > a .ap-icon,
#aa286ac7e4a70ca .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa286ac7e4a70ca .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa286ac7e4a70ca .menu-list > li:hover > a,
#aa286ac7e4a70ca .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa286ac7e4a70ca .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa286ac7e4a70ca .menu-list ul,
#aa286ac7e4a70ca .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa286ac7e4a70ca .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#aa286ac7e4a70ca .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa286ac7e4a70ca .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa286ac7e4a70ca .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a33c4ae487afcf6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abc01adc91a1fff .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a5426a86b5aca88 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a012bac366ad28c > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afbbcac2f7a9f2f a, #afbbcac2f7a9f2f {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#afbbcac2f7a9f2f a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a324eaea24ac020 .a4afdac3f4a586b {
  overflow: hidden;
}
#a324eaea24ac020 .a4afdac3f4a586b , #a324eaea24ac020 .a4afdac3f4a586b > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a324eaea24ac020 .a4afdac3f4a586b:hover , #a324eaea24ac020 .a4afdac3f4a586b *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a324eaea24ac020 .a9ab5ad69aa312c {
  overflow: hidden;
}
#a324eaea24ac020 .a9ab5ad69aa312c , #a324eaea24ac020 .a9ab5ad69aa312c > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a324eaea24ac020 .acd66a60ada7fe7  {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(146, 143, 143, 1);}#a324eaea24ac020 .ae7e5af7c7a6fc6 , #a324eaea24ac020 .ae7e5af7c7a6fc6 a{color: rgba(146, 143, 143, 1);}#a324eaea24ac020 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a324eaea24ac020 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a324eaea24ac020 .uk-position-center-left-out {
    left: -30px;
  }
  #a324eaea24ac020 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#acb29adfa0a3349 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad165a9605a59ec > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#abf4ba1150af7c2 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ab044a8e9ca787a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab044a8e9ca787a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab044a8e9ca787a .ap-icon {
  margin-right: 6px;
}
#ab044a8e9ca787a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ab044a8e9ca787a .menu-list > li.icon-bottom > a,
#ab044a8e9ca787a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab044a8e9ca787a .menu-list > li.icon-bottom > a .ap-icon,
#ab044a8e9ca787a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab044a8e9ca787a .menu-list > li.icon-bottom > a .ap-icon svg,
#ab044a8e9ca787a .menu-list > li.icon-top > a .ap-icon svg,
#ab044a8e9ca787a .menu-list > li.icon-bottom > a .ap-icon img,
#ab044a8e9ca787a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab044a8e9ca787a .menu-list > li.icon-right > a .ap-icon,
#ab044a8e9ca787a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab044a8e9ca787a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab044a8e9ca787a .menu-list > li:hover > a,
#ab044a8e9ca787a .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab044a8e9ca787a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab044a8e9ca787a .menu-list ul,
#ab044a8e9ca787a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab044a8e9ca787a .menu-list ul {
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}
#ab044a8e9ca787a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab044a8e9ca787a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab044a8e9ca787a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8e5ca0047ac78c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa5aba027aaaf4a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a84dcad1f5a1ac2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ade61a17e4a9291 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3c39a2f1bac82c a, #a3c39a2f1bac82c {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a3c39a2f1bac82c a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a2f1ea3be8a499e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1b76a7475aaacf .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a1b76a7475aaacf .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#aeff7ae01da2c5b {
  overflow: hidden;
}
#aeff7ae01da2c5b , #aeff7ae01da2c5b > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: right;font-family: inherit;color: rgba(51, 51, 51, 1);}#a3fc8a8655a78cc .uk-grid {
  margin-left: -15px;
}
#a3fc8a8655a78cc .uk-grid > * {
  padding-left: 15px;
}
#a3fc8a8655a78cc .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3fc8a8655a78cc .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a3fc8a8655a78cc .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a3fc8a8655a78cc .article .info {
  padding: 8px 10px;
  position: relative;
}
#a3fc8a8655a78cc .article .info p {
  margin: 10px 0 10px;
}
#a3fc8a8655a78cc .article svg {
  fill: currentColor;
}
#a3fc8a8655a78cc .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a3fc8a8655a78cc .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a3fc8a8655a78cc .article.list-icon .info {
  padding-left: 25px;
}
#a3fc8a8655a78cc .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a3fc8a8655a78cc .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a3fc8a8655a78cc .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a3fc8a8655a78cc .article:hover .title {
  color: #238bcd;
}
#a3fc8a8655a78cc .article:hover .datetime {
  color: #238bcd;
}
#a3fc8a8655a78cc .article:hover .category {
  color: #b6b6b6;
}
#a3fc8a8655a78cc .article:hover .abstract {
  color: #b6b6b6;
}
#a3fc8a8655a78cc .article:hover .btn_icon {
  color: #b6b6b6;
}
#a3fc8a8655a78cc .article:hover .list_icon {
  color: #b6b6b6;
}
#ae059aa9f7a8614 .uk-grid {
  margin-left: -15px;
}
#ae059aa9f7a8614 .uk-grid > * {
  padding-left: 15px;
}
#ae059aa9f7a8614 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae059aa9f7a8614 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#ae059aa9f7a8614 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ae059aa9f7a8614 .article .info {
  padding: 8px 10px;
  position: relative;
}
#ae059aa9f7a8614 .article .info p {
  margin: 10px 0 10px;
}
#ae059aa9f7a8614 .article svg {
  fill: currentColor;
}
#ae059aa9f7a8614 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#ae059aa9f7a8614 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#ae059aa9f7a8614 .article.list-icon .info {
  padding-left: 25px;
}
#ae059aa9f7a8614 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#ae059aa9f7a8614 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ae059aa9f7a8614 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ae059aa9f7a8614 .article:hover .title {
  color: #238bcd;
}
#ae059aa9f7a8614 .article:hover .datetime {
  color: #238bcd;
}
#ae059aa9f7a8614 .article:hover .category {
  color: #b6b6b6;
}
#ae059aa9f7a8614 .article:hover .abstract {
  color: #b6b6b6;
}
#ae059aa9f7a8614 .article:hover .btn_icon {
  color: #b6b6b6;
}
#ae059aa9f7a8614 .article:hover .list_icon {
  color: #b6b6b6;
}
#a2acfa66f4a15c0 .uk-grid {
  margin-left: -15px;
}
#a2acfa66f4a15c0 .uk-grid > * {
  padding-left: 15px;
}
#a2acfa66f4a15c0 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2acfa66f4a15c0 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a2acfa66f4a15c0 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a2acfa66f4a15c0 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a2acfa66f4a15c0 .article .info p {
  margin: 10px 0 10px;
}
#a2acfa66f4a15c0 .article svg {
  fill: currentColor;
}
#a2acfa66f4a15c0 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a2acfa66f4a15c0 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a2acfa66f4a15c0 .article.list-icon .info {
  padding-left: 25px;
}
#a2acfa66f4a15c0 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a2acfa66f4a15c0 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a2acfa66f4a15c0 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a2acfa66f4a15c0 .article:hover .title {
  color: #238bcd;
}
#a2acfa66f4a15c0 .article:hover .datetime {
  color: #238bcd;
}
#a2acfa66f4a15c0 .article:hover .category {
  color: #b6b6b6;
}
#a2acfa66f4a15c0 .article:hover .abstract {
  color: #b6b6b6;
}
#a2acfa66f4a15c0 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a2acfa66f4a15c0 .article:hover .list_icon {
  color: #b6b6b6;
}
#afd9da9486ad00e {
  overflow: hidden;
  pointer-events: none;
}
#afd9da9486ad00e > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#afd9da9486ad00e > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#afd9da9486ad00e > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#afd9da9486ad00e > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#afd9da9486ad00e > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#afd9da9486ad00e > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav,
#afd9da9486ad00e > .tab-nav,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav,
#afd9da9486ad00e > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav-horizontal,
#afd9da9486ad00e > .tab-nav-horizontal,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#afd9da9486ad00e > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#afd9da9486ad00e > .tab-nav-horizontal::-webkit-scrollbar,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#afd9da9486ad00e > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#afd9da9486ad00e > .tab-nav-horizontal.tagScroll,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#afd9da9486ad00e > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#afd9da9486ad00e > .tab-nav-horizontal.tagScroll li a,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#afd9da9486ad00e > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav a,
#afd9da9486ad00e > .tab-nav a,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav a,
#afd9da9486ad00e > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav li a,
#afd9da9486ad00e > .tab-nav li a,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#afd9da9486ad00e > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav li a svg,
#afd9da9486ad00e > .tab-nav li a svg,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#afd9da9486ad00e > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav li a .ap_icon,
#afd9da9486ad00e > .tab-nav li a .ap_icon,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#afd9da9486ad00e > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav li a:hover,
#afd9da9486ad00e > .tab-nav li a:hover,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#afd9da9486ad00e > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#afd9da9486ad00e > .tab-wrap > div > .tab-nav li.uk-active a,
#afd9da9486ad00e > .tab-nav li.uk-active a,
#afd9da9486ad00e > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#afd9da9486ad00e > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#afd9da9486ad00e .layout-left li,
#afd9da9486ad00e .layout-center li,
#afd9da9486ad00e .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#afd9da9486ad00e .layout-left li a,
#afd9da9486ad00e .layout-center li a,
#afd9da9486ad00e .layout-right li a {
  height: 100%;
}
#afd9da9486ad00e > .tab-tabs .layout-left {
  text-align: left;
}
#afd9da9486ad00e > .tab-tabs .layout-center {
  text-align: center;
}
#afd9da9486ad00e > .tab-tabs .layout-right {
  text-align: right;
}
#afd9da9486ad00e .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#afd9da9486ad00e .tab-content-wrap {
  background-color: transparent;
}
#afd9da9486ad00e .tab-contents,
#afd9da9486ad00e .tab-contents-wrap {
  pointer-events: none;
}
#afd9da9486ad00e .tab-content,
#afd9da9486ad00e .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#afd9da9486ad00e .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#afd9da9486ad00e .tab-wrap .tab-contents {
  height: 100%;
}
#afd9da9486ad00e .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#afd9da9486ad00e .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#afd9da9486ad00e .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#abceeaab3ea201f .a60a1aa490af05e {
  overflow: hidden;
}
#abceeaab3ea201f .a60a1aa490af05e , #abceeaab3ea201f .a60a1aa490af05e > * {
        font-weight: normal;
        font-style: normal;
    font-size: 17px;text-align: center;font-family: inherit;color: rgba(34, 34, 34, 1);}#abceeaab3ea201f .a60a1aa490af05e:hover , #abceeaab3ea201f .a60a1aa490af05e *:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 122, 195, 1);}#abceeaab3ea201f .a98c6ab17caf510 > .ele-wrap {background-color: rgba(238, 238, 238, 0.8);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abceeaab3ea201f .aeb17a2a3aa2af7 {
  overflow: hidden;
}
#abceeaab3ea201f .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#abceeaab3ea201f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abceeaab3ea201f .uk-position-center-left-out {
    left: -30px;
  }
  #abceeaab3ea201f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2341a5e8ba81ae .ac404a3fefa9945 {
  overflow: hidden;
}
#a2341a5e8ba81ae .ac404a3fefa9945 , #a2341a5e8ba81ae .ac404a3fefa9945 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 17px;text-align: center;font-family: inherit;color: rgba(34, 34, 34, 1);}#a2341a5e8ba81ae .ac404a3fefa9945:hover , #a2341a5e8ba81ae .ac404a3fefa9945 *:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 122, 195, 1);}#a2341a5e8ba81ae .ab70faeef9a9a25 > .ele-wrap {background-color: rgba(238, 238, 238, 0.8);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2341a5e8ba81ae .a5604a35bea182a {
  overflow: hidden;
}
#a2341a5e8ba81ae .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a2341a5e8ba81ae .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2341a5e8ba81ae .uk-position-center-left-out {
    left: -30px;
  }
  #a2341a5e8ba81ae .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a8e9ca0366ab408 .uk-grid {
  margin-left: -15px;
}
#a8e9ca0366ab408 .uk-grid > * {
  padding-left: 15px;
}
#a8e9ca0366ab408 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8e9ca0366ab408 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a8e9ca0366ab408 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a8e9ca0366ab408 .article .info {
  padding: 5px 10px;
  position: relative;
}
#a8e9ca0366ab408 .article .info p {
  margin: 10px 0 10px;
}
#a8e9ca0366ab408 .article svg {
  fill: currentColor;
}
#a8e9ca0366ab408 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 5px;
  width: 20px;
  color: #b4b4b4;
}
#a8e9ca0366ab408 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 5px;
  color: #b4b4b4;
}
#a8e9ca0366ab408 .article.list-icon .info {
  padding-left: 25px;
}
#a8e9ca0366ab408 .article .datetime {
  position: absolute;
  right: 10px;
  top: 5px;
}
#a8e9ca0366ab408 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#a8e9ca0366ab408 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #9b9b9b;
}
#a8e9ca0366ab408 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a8e9ca0366ab408 .article:hover .title {
  color: #238bcd;
}
#a8e9ca0366ab408 .article:hover .datetime {
  color: #238bcd;
}
#a8e9ca0366ab408 .article:hover .category {
  color: #b6b6b6;
}
#a8e9ca0366ab408 .article:hover .abstract {
  color: #238bcd;
}
#a8e9ca0366ab408 .article:hover .btn_icon {
  color: #238bcd;
}
#a8e9ca0366ab408 .article:hover .list_icon {
  color: #238bcd;
}
#ae4a3a0bdeaa33b {
  overflow: hidden;
  pointer-events: none;
}
#ae4a3a0bdeaa33b > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ae4a3a0bdeaa33b > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#ae4a3a0bdeaa33b > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae4a3a0bdeaa33b > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ae4a3a0bdeaa33b > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#ae4a3a0bdeaa33b > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav,
#ae4a3a0bdeaa33b > .tab-nav,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav-horizontal,
#ae4a3a0bdeaa33b > .tab-nav-horizontal,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae4a3a0bdeaa33b > .tab-nav-horizontal::-webkit-scrollbar,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae4a3a0bdeaa33b > .tab-nav-horizontal.tagScroll,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae4a3a0bdeaa33b > .tab-nav-horizontal.tagScroll li a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav a,
#ae4a3a0bdeaa33b > .tab-nav a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav li a,
#ae4a3a0bdeaa33b > .tab-nav li a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav li a svg,
#ae4a3a0bdeaa33b > .tab-nav li a svg,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae4a3a0bdeaa33b > .tab-nav li a .ap_icon,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav li a:hover,
#ae4a3a0bdeaa33b > .tab-nav li a:hover,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#ae4a3a0bdeaa33b > .tab-wrap > div > .tab-nav li.uk-active a,
#ae4a3a0bdeaa33b > .tab-nav li.uk-active a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ae4a3a0bdeaa33b > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#ae4a3a0bdeaa33b .layout-left li,
#ae4a3a0bdeaa33b .layout-center li,
#ae4a3a0bdeaa33b .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ae4a3a0bdeaa33b .layout-left li a,
#ae4a3a0bdeaa33b .layout-center li a,
#ae4a3a0bdeaa33b .layout-right li a {
  height: 100%;
}
#ae4a3a0bdeaa33b > .tab-tabs .layout-left {
  text-align: left;
}
#ae4a3a0bdeaa33b > .tab-tabs .layout-center {
  text-align: center;
}
#ae4a3a0bdeaa33b > .tab-tabs .layout-right {
  text-align: right;
}
#ae4a3a0bdeaa33b .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#ae4a3a0bdeaa33b .tab-content-wrap {
  background-color: transparent;
}
#ae4a3a0bdeaa33b .tab-contents,
#ae4a3a0bdeaa33b .tab-contents-wrap {
  pointer-events: none;
}
#ae4a3a0bdeaa33b .tab-content,
#ae4a3a0bdeaa33b .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ae4a3a0bdeaa33b .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ae4a3a0bdeaa33b .tab-wrap .tab-contents {
  height: 100%;
}
#ae4a3a0bdeaa33b .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ae4a3a0bdeaa33b .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ae4a3a0bdeaa33b .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a90d5a3a3aafc47 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a90d5a3a3aafc47 .uk-grid {
  margin-left: -4px;
}
#a90d5a3a3aafc47 .uk-grid > * {
  padding-left: 4px;
}
#a90d5a3a3aafc47 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#a90d5a3a3aafc47 .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
  border-top-width: 1px;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a90d5a3a3aafc47 .uk-card-media-top {
  overflow: hidden;
}
#a90d5a3a3aafc47 .uk-card-media-top .img {
  transition: all .3s ease;
}
#a90d5a3a3aafc47 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a90d5a3a3aafc47 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a90d5a3a3aafc47 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a90d5a3a3aafc47 .uk-card-body {
  padding: 15px 10px 8px;
}
#a90d5a3a3aafc47 hr {
  border-top-color: rgba(180, 180, 180, 0.1);
  margin: 0 0 10px;
}
#a90d5a3a3aafc47 .uk-button {
  border: 1px solid #ececec;
}
#a90d5a3a3aafc47 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #000000;
}
#a90d5a3a3aafc47 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #9b9b9b;
}
#a90d5a3a3aafc47 .uk-card:hover {
  background-color: #ffffff;
}
#a90d5a3a3aafc47 .uk-card:hover .title {
  color: #4a90e2;
}
#a90d5a3a3aafc47 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#a90d5a3a3aafc47 .uk-card:hover .img {
  transform: scale(1.2);
}
#a90d5a3a3aafc47 .uk-card:hover .abstract {
  color: #4a90e2;
}
#a90d5a3a3aafc47 .uk-card:hover .datetime {
  color: #d3b267;
}
#a90d5a3a3aafc47 .uk-card:hover .category {
  color: #d3b267;
}
#a90d5a3a3aafc47 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#ab3d1a6bcbaf578 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#ab3d1a6bcbaf578 .uk-grid {
  margin-left: -4px;
}
#ab3d1a6bcbaf578 .uk-grid > * {
  padding-left: 4px;
}
#ab3d1a6bcbaf578 .uk-grid > .uk-grid-margin {
  margin-top: 15px;
}
#ab3d1a6bcbaf578 .uk-card {
  background-color: #2265ff;
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
  border-top-width: 1px;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ab3d1a6bcbaf578 .uk-card-media-top {
  overflow: hidden;
}
#ab3d1a6bcbaf578 .uk-card-media-top .img {
  transition: all .3s ease;
}
#ab3d1a6bcbaf578 .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#ab3d1a6bcbaf578 .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#ab3d1a6bcbaf578 .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#ab3d1a6bcbaf578 .uk-card-body {
  padding: 15px 10px 8px;
}
#ab3d1a6bcbaf578 hr {
  border-top-color: rgba(180, 180, 180, 0.1);
  margin: 0 0 10px;
}
#ab3d1a6bcbaf578 .uk-button {
  border: 1px solid #ececec;
}
#ab3d1a6bcbaf578 .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #000000;
}
#ab3d1a6bcbaf578 .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: inherit;
  color: #9b9b9b;
}
#ab3d1a6bcbaf578 .uk-card:hover {
  background-color: #ffffff;
}
#ab3d1a6bcbaf578 .uk-card:hover .title {
  color: #4a90e2;
}
#ab3d1a6bcbaf578 .uk-card:hover hr {
  border-top-color: #ffffff;
}
#ab3d1a6bcbaf578 .uk-card:hover .img {
  transform: scale(1.2);
}
#ab3d1a6bcbaf578 .uk-card:hover .abstract {
  color: #4a90e2;
}
#ab3d1a6bcbaf578 .uk-card:hover .datetime {
  color: #d3b267;
}
#ab3d1a6bcbaf578 .uk-card:hover .category {
  color: #d3b267;
}
#ab3d1a6bcbaf578 .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#aa410adac7a44e0 {
  overflow: hidden;
  pointer-events: none;
}
#aa410adac7a44e0 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#aa410adac7a44e0 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#aa410adac7a44e0 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa410adac7a44e0 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 43px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#aa410adac7a44e0 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#aa410adac7a44e0 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav,
#aa410adac7a44e0 > .tab-nav,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav,
#aa410adac7a44e0 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav-horizontal,
#aa410adac7a44e0 > .tab-nav-horizontal,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aa410adac7a44e0 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa410adac7a44e0 > .tab-nav-horizontal::-webkit-scrollbar,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa410adac7a44e0 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa410adac7a44e0 > .tab-nav-horizontal.tagScroll,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa410adac7a44e0 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 43px;
  overflow-x: auto;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa410adac7a44e0 > .tab-nav-horizontal.tagScroll li a,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa410adac7a44e0 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav a,
#aa410adac7a44e0 > .tab-nav a,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aa410adac7a44e0 > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav li a,
#aa410adac7a44e0 > .tab-nav li a,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aa410adac7a44e0 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 43px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  border-bottom-style: none;
  border-bottom-width: 0;
  padding: 0 25px;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav li a svg,
#aa410adac7a44e0 > .tab-nav li a svg,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aa410adac7a44e0 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa410adac7a44e0 > .tab-nav li a .ap_icon,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa410adac7a44e0 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav li a:hover,
#aa410adac7a44e0 > .tab-nav li a:hover,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aa410adac7a44e0 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: none;
}
#aa410adac7a44e0 > .tab-wrap > div > .tab-nav li.uk-active a,
#aa410adac7a44e0 > .tab-nav li.uk-active a,
#aa410adac7a44e0 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aa410adac7a44e0 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #238bcd;
}
#aa410adac7a44e0 .layout-left li,
#aa410adac7a44e0 .layout-center li,
#aa410adac7a44e0 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aa410adac7a44e0 .layout-left li a,
#aa410adac7a44e0 .layout-center li a,
#aa410adac7a44e0 .layout-right li a {
  height: 100%;
}
#aa410adac7a44e0 > .tab-tabs .layout-left {
  text-align: left;
}
#aa410adac7a44e0 > .tab-tabs .layout-center {
  text-align: center;
}
#aa410adac7a44e0 > .tab-tabs .layout-right {
  text-align: right;
}
#aa410adac7a44e0 .tab-contents {
  height: 100%;
  height: calc(100% - 43px);
}
#aa410adac7a44e0 .tab-content-wrap {
  background-color: transparent;
}
#aa410adac7a44e0 .tab-contents,
#aa410adac7a44e0 .tab-contents-wrap {
  pointer-events: none;
}
#aa410adac7a44e0 .tab-content,
#aa410adac7a44e0 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aa410adac7a44e0 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aa410adac7a44e0 .tab-wrap .tab-contents {
  height: 100%;
}
#aa410adac7a44e0 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#aa410adac7a44e0 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#aa410adac7a44e0 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a3da5ac5abaa853 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad156a0954afabe > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a6bcea389ba108e > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#af9d4a9baaa9518 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af9d4a9baaa9518 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af9d4a9baaa9518 .ap-icon {
  margin-right: 6px;
}
#af9d4a9baaa9518 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#af9d4a9baaa9518 .menu-list > li.icon-bottom > a,
#af9d4a9baaa9518 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af9d4a9baaa9518 .menu-list > li.icon-bottom > a .ap-icon,
#af9d4a9baaa9518 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af9d4a9baaa9518 .menu-list > li.icon-bottom > a .ap-icon svg,
#af9d4a9baaa9518 .menu-list > li.icon-top > a .ap-icon svg,
#af9d4a9baaa9518 .menu-list > li.icon-bottom > a .ap-icon img,
#af9d4a9baaa9518 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af9d4a9baaa9518 .menu-list > li.icon-right > a .ap-icon,
#af9d4a9baaa9518 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af9d4a9baaa9518 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af9d4a9baaa9518 .menu-list > li:hover > a,
#af9d4a9baaa9518 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af9d4a9baaa9518 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af9d4a9baaa9518 .menu-list ul,
#af9d4a9baaa9518 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af9d4a9baaa9518 .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#af9d4a9baaa9518 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af9d4a9baaa9518 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af9d4a9baaa9518 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a98d2a252aac176 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a94bfa220da5cb0 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a273ba344faac9c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#addbba3168a0537 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9374ab262a781c a, #a9374ab262a781c {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a9374ab262a781c a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a88fba5d43a5e4a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc0bab421a7e94 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#a520aa9da7abae9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a520aa9da7abae9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a520aa9da7abae9 .ap-icon {
  margin-right: 6px;
}
#a520aa9da7abae9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a520aa9da7abae9 .menu-list > li.icon-bottom > a,
#a520aa9da7abae9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a520aa9da7abae9 .menu-list > li.icon-bottom > a .ap-icon,
#a520aa9da7abae9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a520aa9da7abae9 .menu-list > li.icon-bottom > a .ap-icon svg,
#a520aa9da7abae9 .menu-list > li.icon-top > a .ap-icon svg,
#a520aa9da7abae9 .menu-list > li.icon-bottom > a .ap-icon img,
#a520aa9da7abae9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a520aa9da7abae9 .menu-list > li.icon-right > a .ap-icon,
#a520aa9da7abae9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a520aa9da7abae9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a520aa9da7abae9 .menu-list > li:hover > a,
#a520aa9da7abae9 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a520aa9da7abae9 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a520aa9da7abae9 .menu-list ul,
#a520aa9da7abae9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a520aa9da7abae9 .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#a520aa9da7abae9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a520aa9da7abae9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a520aa9da7abae9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a10e6a93a9ac398 .uk-grid {
  margin-left: -15px;
}
#a10e6a93a9ac398 .uk-grid > * {
  padding-left: 15px;
}
#a10e6a93a9ac398 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a10e6a93a9ac398 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a10e6a93a9ac398 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a10e6a93a9ac398 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a10e6a93a9ac398 .article .info p {
  margin: 10px 0 10px;
}
#a10e6a93a9ac398 .article svg {
  fill: currentColor;
}
#a10e6a93a9ac398 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a10e6a93a9ac398 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a10e6a93a9ac398 .article.list-icon .info {
  padding-left: 25px;
}
#a10e6a93a9ac398 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a10e6a93a9ac398 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a10e6a93a9ac398 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a10e6a93a9ac398 .article:hover .title {
  color: #238bcd;
}
#a10e6a93a9ac398 .article:hover .datetime {
  color: #238bcd;
}
#a10e6a93a9ac398 .article:hover .category {
  color: #b6b6b6;
}
#a10e6a93a9ac398 .article:hover .abstract {
  color: #b6b6b6;
}
#a10e6a93a9ac398 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a10e6a93a9ac398 .article:hover .list_icon {
  color: #b6b6b6;
}
#ab590a8b59a0c72 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac40da0fb9a2efc > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#ab2f1a5372abefe .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab2f1a5372abefe .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab2f1a5372abefe .ap-icon {
  margin-right: 6px;
}
#ab2f1a5372abefe .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ab2f1a5372abefe .menu-list > li.icon-bottom > a,
#ab2f1a5372abefe .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab2f1a5372abefe .menu-list > li.icon-bottom > a .ap-icon,
#ab2f1a5372abefe .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab2f1a5372abefe .menu-list > li.icon-bottom > a .ap-icon svg,
#ab2f1a5372abefe .menu-list > li.icon-top > a .ap-icon svg,
#ab2f1a5372abefe .menu-list > li.icon-bottom > a .ap-icon img,
#ab2f1a5372abefe .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab2f1a5372abefe .menu-list > li.icon-right > a .ap-icon,
#ab2f1a5372abefe .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab2f1a5372abefe .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab2f1a5372abefe .menu-list > li:hover > a,
#ab2f1a5372abefe .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab2f1a5372abefe .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab2f1a5372abefe .menu-list ul,
#ab2f1a5372abefe .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab2f1a5372abefe .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#ab2f1a5372abefe .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab2f1a5372abefe .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab2f1a5372abefe .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a94eea0bdbaa0d1 .uk-grid {
  margin-left: -15px;
}
#a94eea0bdbaa0d1 .uk-grid > * {
  padding-left: 15px;
}
#a94eea0bdbaa0d1 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a94eea0bdbaa0d1 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a94eea0bdbaa0d1 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a94eea0bdbaa0d1 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a94eea0bdbaa0d1 .article .info p {
  margin: 10px 0 10px;
}
#a94eea0bdbaa0d1 .article svg {
  fill: currentColor;
}
#a94eea0bdbaa0d1 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a94eea0bdbaa0d1 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a94eea0bdbaa0d1 .article.list-icon .info {
  padding-left: 25px;
}
#a94eea0bdbaa0d1 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a94eea0bdbaa0d1 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a94eea0bdbaa0d1 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a94eea0bdbaa0d1 .article:hover .title {
  color: #238bcd;
}
#a94eea0bdbaa0d1 .article:hover .datetime {
  color: #238bcd;
}
#a94eea0bdbaa0d1 .article:hover .category {
  color: #b6b6b6;
}
#a94eea0bdbaa0d1 .article:hover .abstract {
  color: #b6b6b6;
}
#a94eea0bdbaa0d1 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a94eea0bdbaa0d1 .article:hover .list_icon {
  color: #b6b6b6;
}
#a95fdaf1d8ae399 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adf44ac4ababb4b > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ac576a5daea0b34 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a1a6ea0722ab38e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1a6ea0722ab38e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1a6ea0722ab38e .ap-icon {
  margin-right: 6px;
}
#a1a6ea0722ab38e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a1a6ea0722ab38e .menu-list > li.icon-bottom > a,
#a1a6ea0722ab38e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1a6ea0722ab38e .menu-list > li.icon-bottom > a .ap-icon,
#a1a6ea0722ab38e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1a6ea0722ab38e .menu-list > li.icon-bottom > a .ap-icon svg,
#a1a6ea0722ab38e .menu-list > li.icon-top > a .ap-icon svg,
#a1a6ea0722ab38e .menu-list > li.icon-bottom > a .ap-icon img,
#a1a6ea0722ab38e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1a6ea0722ab38e .menu-list > li.icon-right > a .ap-icon,
#a1a6ea0722ab38e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1a6ea0722ab38e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1a6ea0722ab38e .menu-list > li:hover > a,
#a1a6ea0722ab38e .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1a6ea0722ab38e .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1a6ea0722ab38e .menu-list ul,
#a1a6ea0722ab38e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1a6ea0722ab38e .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a1a6ea0722ab38e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1a6ea0722ab38e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1a6ea0722ab38e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a01a8a74f4a72ab .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a01a8a74f4a72ab .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a01a8a74f4a72ab .ap-icon {
  margin-right: 6px;
}
#a01a8a74f4a72ab .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a01a8a74f4a72ab .menu-list > li.icon-bottom > a,
#a01a8a74f4a72ab .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a01a8a74f4a72ab .menu-list > li.icon-bottom > a .ap-icon,
#a01a8a74f4a72ab .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a01a8a74f4a72ab .menu-list > li.icon-bottom > a .ap-icon svg,
#a01a8a74f4a72ab .menu-list > li.icon-top > a .ap-icon svg,
#a01a8a74f4a72ab .menu-list > li.icon-bottom > a .ap-icon img,
#a01a8a74f4a72ab .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a01a8a74f4a72ab .menu-list > li.icon-right > a .ap-icon,
#a01a8a74f4a72ab .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a01a8a74f4a72ab .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a01a8a74f4a72ab .menu-list > li:hover > a,
#a01a8a74f4a72ab .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a01a8a74f4a72ab .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a01a8a74f4a72ab .menu-list ul,
#a01a8a74f4a72ab .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a01a8a74f4a72ab .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#a01a8a74f4a72ab .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a01a8a74f4a72ab .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a01a8a74f4a72ab .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a857bae14aa302c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a857bae14aa302c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a857bae14aa302c .ap-icon {
  margin-right: 6px;
}
#a857bae14aa302c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a857bae14aa302c .menu-list > li.icon-bottom > a,
#a857bae14aa302c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a857bae14aa302c .menu-list > li.icon-bottom > a .ap-icon,
#a857bae14aa302c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a857bae14aa302c .menu-list > li.icon-bottom > a .ap-icon svg,
#a857bae14aa302c .menu-list > li.icon-top > a .ap-icon svg,
#a857bae14aa302c .menu-list > li.icon-bottom > a .ap-icon img,
#a857bae14aa302c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a857bae14aa302c .menu-list > li.icon-right > a .ap-icon,
#a857bae14aa302c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a857bae14aa302c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a857bae14aa302c .menu-list > li:hover > a,
#a857bae14aa302c .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a857bae14aa302c .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a857bae14aa302c .menu-list ul,
#a857bae14aa302c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a857bae14aa302c .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a857bae14aa302c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a857bae14aa302c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a857bae14aa302c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0bd3a46b4a411f .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a0bd3a46b4a411f .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a0bd3a46b4a411f .ap-icon {
  margin-right: 6px;
}
#a0bd3a46b4a411f .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a0bd3a46b4a411f .menu-list > li.icon-bottom > a,
#a0bd3a46b4a411f .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a0bd3a46b4a411f .menu-list > li.icon-bottom > a .ap-icon,
#a0bd3a46b4a411f .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a0bd3a46b4a411f .menu-list > li.icon-bottom > a .ap-icon svg,
#a0bd3a46b4a411f .menu-list > li.icon-top > a .ap-icon svg,
#a0bd3a46b4a411f .menu-list > li.icon-bottom > a .ap-icon img,
#a0bd3a46b4a411f .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a0bd3a46b4a411f .menu-list > li.icon-right > a .ap-icon,
#a0bd3a46b4a411f .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a0bd3a46b4a411f .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a0bd3a46b4a411f .menu-list > li:hover > a,
#a0bd3a46b4a411f .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a0bd3a46b4a411f .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a0bd3a46b4a411f .menu-list ul,
#a0bd3a46b4a411f .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a0bd3a46b4a411f .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a0bd3a46b4a411f .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a0bd3a46b4a411f .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a0bd3a46b4a411f .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3416a58b0a6d9b .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3416a58b0a6d9b .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3416a58b0a6d9b .ap-icon {
  margin-right: 6px;
}
#a3416a58b0a6d9b .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a3416a58b0a6d9b .menu-list > li.icon-bottom > a,
#a3416a58b0a6d9b .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3416a58b0a6d9b .menu-list > li.icon-bottom > a .ap-icon,
#a3416a58b0a6d9b .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3416a58b0a6d9b .menu-list > li.icon-bottom > a .ap-icon svg,
#a3416a58b0a6d9b .menu-list > li.icon-top > a .ap-icon svg,
#a3416a58b0a6d9b .menu-list > li.icon-bottom > a .ap-icon img,
#a3416a58b0a6d9b .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3416a58b0a6d9b .menu-list > li.icon-right > a .ap-icon,
#a3416a58b0a6d9b .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3416a58b0a6d9b .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3416a58b0a6d9b .menu-list > li:hover > a,
#a3416a58b0a6d9b .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3416a58b0a6d9b .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3416a58b0a6d9b .menu-list ul,
#a3416a58b0a6d9b .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3416a58b0a6d9b .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a3416a58b0a6d9b .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3416a58b0a6d9b .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3416a58b0a6d9b .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a977aab3f3a3583 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9e88a274aa3b48 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a4885af581a7a8a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a9659a06c6a705e > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#add48a7297ac325 a, #add48a7297ac325 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#add48a7297ac325 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a3a42a706ca47e6 .gallery-items-wrap {
  margin-left: -15px;
}
#a3a42a706ca47e6 .filter.active {
  background-color: #238bcd;
}
#a3a42a706ca47e6 .gallery-item {
  width: 442px;
  margin: 0 0 15px 15px;
  float: left;
  list-style: none;
  position: relative;
}
#a3a42a706ca47e6 .text-style-3 figure {
  height: nullpx;
}
#a3a42a706ca47e6 .gallery-item figcaption {
  background-color: rgba(74, 74, 74, 0.1);
}
#a3a42a706ca47e6 .gallery-item h3 {
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  text-align: left;
  font-family: inherit;
  color: #ffffff;
}
#a7dd0a1959a376a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac25eacbf2a8a84 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ae563a485ea5d98 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ac20da57bbab561 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac20da57bbab561 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac20da57bbab561 .ap-icon {
  margin-right: 6px;
}
#ac20da57bbab561 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ac20da57bbab561 .menu-list > li.icon-bottom > a,
#ac20da57bbab561 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac20da57bbab561 .menu-list > li.icon-bottom > a .ap-icon,
#ac20da57bbab561 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac20da57bbab561 .menu-list > li.icon-bottom > a .ap-icon svg,
#ac20da57bbab561 .menu-list > li.icon-top > a .ap-icon svg,
#ac20da57bbab561 .menu-list > li.icon-bottom > a .ap-icon img,
#ac20da57bbab561 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac20da57bbab561 .menu-list > li.icon-right > a .ap-icon,
#ac20da57bbab561 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac20da57bbab561 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac20da57bbab561 .menu-list > li:hover > a,
#ac20da57bbab561 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ac20da57bbab561 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ac20da57bbab561 .menu-list ul,
#ac20da57bbab561 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac20da57bbab561 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ac20da57bbab561 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac20da57bbab561 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac20da57bbab561 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aba2ba68ffa26fc .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aba2ba68ffa26fc .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aba2ba68ffa26fc .ap-icon {
  margin-right: 6px;
}
#aba2ba68ffa26fc .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#aba2ba68ffa26fc .menu-list > li.icon-bottom > a,
#aba2ba68ffa26fc .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aba2ba68ffa26fc .menu-list > li.icon-bottom > a .ap-icon,
#aba2ba68ffa26fc .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aba2ba68ffa26fc .menu-list > li.icon-bottom > a .ap-icon svg,
#aba2ba68ffa26fc .menu-list > li.icon-top > a .ap-icon svg,
#aba2ba68ffa26fc .menu-list > li.icon-bottom > a .ap-icon img,
#aba2ba68ffa26fc .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aba2ba68ffa26fc .menu-list > li.icon-right > a .ap-icon,
#aba2ba68ffa26fc .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aba2ba68ffa26fc .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aba2ba68ffa26fc .menu-list > li:hover > a,
#aba2ba68ffa26fc .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aba2ba68ffa26fc .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aba2ba68ffa26fc .menu-list ul,
#aba2ba68ffa26fc .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aba2ba68ffa26fc .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#aba2ba68ffa26fc .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aba2ba68ffa26fc .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aba2ba68ffa26fc .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4ccfad9d1a74a7 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a4ccfad9d1a74a7 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a4ccfad9d1a74a7 .ap-icon {
  margin-right: 6px;
}
#a4ccfad9d1a74a7 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a4ccfad9d1a74a7 .menu-list > li.icon-bottom > a,
#a4ccfad9d1a74a7 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a4ccfad9d1a74a7 .menu-list > li.icon-bottom > a .ap-icon,
#a4ccfad9d1a74a7 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a4ccfad9d1a74a7 .menu-list > li.icon-bottom > a .ap-icon svg,
#a4ccfad9d1a74a7 .menu-list > li.icon-top > a .ap-icon svg,
#a4ccfad9d1a74a7 .menu-list > li.icon-bottom > a .ap-icon img,
#a4ccfad9d1a74a7 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a4ccfad9d1a74a7 .menu-list > li.icon-right > a .ap-icon,
#a4ccfad9d1a74a7 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a4ccfad9d1a74a7 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a4ccfad9d1a74a7 .menu-list > li:hover > a,
#a4ccfad9d1a74a7 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a4ccfad9d1a74a7 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a4ccfad9d1a74a7 .menu-list ul,
#a4ccfad9d1a74a7 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a4ccfad9d1a74a7 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a4ccfad9d1a74a7 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4ccfad9d1a74a7 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4ccfad9d1a74a7 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0a76a5b41a825a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a0a76a5b41a825a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a0a76a5b41a825a .ap-icon {
  margin-right: 6px;
}
#a0a76a5b41a825a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a0a76a5b41a825a .menu-list > li.icon-bottom > a,
#a0a76a5b41a825a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a0a76a5b41a825a .menu-list > li.icon-bottom > a .ap-icon,
#a0a76a5b41a825a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a0a76a5b41a825a .menu-list > li.icon-bottom > a .ap-icon svg,
#a0a76a5b41a825a .menu-list > li.icon-top > a .ap-icon svg,
#a0a76a5b41a825a .menu-list > li.icon-bottom > a .ap-icon img,
#a0a76a5b41a825a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a0a76a5b41a825a .menu-list > li.icon-right > a .ap-icon,
#a0a76a5b41a825a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a0a76a5b41a825a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a0a76a5b41a825a .menu-list > li:hover > a,
#a0a76a5b41a825a .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a0a76a5b41a825a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a0a76a5b41a825a .menu-list ul,
#a0a76a5b41a825a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a0a76a5b41a825a .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a0a76a5b41a825a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a0a76a5b41a825a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a0a76a5b41a825a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab41faa0bbad35a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab41faa0bbad35a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab41faa0bbad35a .ap-icon {
  margin-right: 6px;
}
#ab41faa0bbad35a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ab41faa0bbad35a .menu-list > li.icon-bottom > a,
#ab41faa0bbad35a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab41faa0bbad35a .menu-list > li.icon-bottom > a .ap-icon,
#ab41faa0bbad35a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab41faa0bbad35a .menu-list > li.icon-bottom > a .ap-icon svg,
#ab41faa0bbad35a .menu-list > li.icon-top > a .ap-icon svg,
#ab41faa0bbad35a .menu-list > li.icon-bottom > a .ap-icon img,
#ab41faa0bbad35a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab41faa0bbad35a .menu-list > li.icon-right > a .ap-icon,
#ab41faa0bbad35a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab41faa0bbad35a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab41faa0bbad35a .menu-list > li:hover > a,
#ab41faa0bbad35a .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab41faa0bbad35a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab41faa0bbad35a .menu-list ul,
#ab41faa0bbad35a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab41faa0bbad35a .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ab41faa0bbad35a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab41faa0bbad35a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab41faa0bbad35a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a7150a51e0a4d2d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#affb2a29c2a43b8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a0444ad0e0af135 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a39eea2df4af8c0 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5dffa42d6a364a a, #a5dffa42d6a364a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5dffa42d6a364a a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a62eba187bae542 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(249, 249, 249, 1);border-right-color: rgba(249, 249, 249, 1);border-left-color: rgba(249, 249, 249, 1);border-bottom-color: rgba(249, 249, 249, 1);}#a9f5ba3394aea0a .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a9f5ba3394aea0a .ele-wrap:hover {background-color: #0483cc;background-color: rgba(249, 249, 249, 1);border-color: rgba(249, 249, 249, 1);}#a3eaaa2f08a6a0c .a4ef2ae2dca7db6 {
  overflow: hidden;
}
#a3eaaa2f08a6a0c .a4647a103bad590 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a3eaaa2f08a6a0c .a90dea7405a97ed {
  overflow: hidden;
}
#a3eaaa2f08a6a0c .a90dea7405a97ed , #a3eaaa2f08a6a0c .a90dea7405a97ed > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a3eaaa2f08a6a0c .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #f9f9f9;
  border-right-color: #f9f9f9;
  border-left-color: #f9f9f9;
  border-bottom-color: #f9f9f9;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a3eaaa2f08a6a0c .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3eaaa2f08a6a0c .uk-position-center-left-out {
    left: -30px;
  }
  #a3eaaa2f08a6a0c .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#af4f4a682bad112 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(249, 249, 249, 1);border-right-color: rgba(249, 249, 249, 1);border-left-color: rgba(249, 249, 249, 1);border-bottom-color: rgba(249, 249, 249, 1);}#a3d66aa0eba58ee .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a3d66aa0eba58ee .ele-wrap:hover {background-color: #0483cc;background-color: rgba(249, 249, 249, 1);border-color: rgba(249, 249, 249, 1);}#aababa9b57a7895 .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;}#aababa9b57a7895 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(249, 249, 249, 1);border-color: rgba(249, 249, 249, 1);}#a6012aa553acf8d .a26b4a623bafaa6 {
  overflow: hidden;
}
#a6012aa553acf8d .a15eba9994a2a93 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a6012aa553acf8d .afbbea31afa25d5 {
  overflow: hidden;
}
#a6012aa553acf8d .afbbea31afa25d5 , #a6012aa553acf8d .afbbea31afa25d5 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a6012aa553acf8d .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #f9f9f9;
  border-right-color: #f9f9f9;
  border-left-color: #f9f9f9;
  border-bottom-color: #f9f9f9;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6012aa553acf8d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a6012aa553acf8d .uk-position-center-left-out {
    left: -30px;
  }
  #a6012aa553acf8d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#acc74af3b8a72f4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(249, 249, 249, 1);border-right-color: rgba(249, 249, 249, 1);border-left-color: rgba(249, 249, 249, 1);border-bottom-color: rgba(249, 249, 249, 1);}#a2295a4f50a5688 .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a2295a4f50a5688 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(249, 249, 249, 1);border-color: rgba(249, 249, 249, 1);}#a14a3a5feba454f .ae4e0a3b39aa393 {
  overflow: hidden;
}
#a14a3a5feba454f .a333da4166a78a7 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a14a3a5feba454f .a8acaa954faa2ba {
  overflow: hidden;
}
#a14a3a5feba454f .a8acaa954faa2ba , #a14a3a5feba454f .a8acaa954faa2ba > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a14a3a5feba454f .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #f9f9f9;
  border-right-color: #f9f9f9;
  border-left-color: #f9f9f9;
  border-bottom-color: #f9f9f9;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a14a3a5feba454f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a14a3a5feba454f .uk-position-center-left-out {
    left: -30px;
  }
  #a14a3a5feba454f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac01cae02ca3c64 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae4dea4f38afea8 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#acd12a8a32a2ebf > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a9ce6a69fbafb71 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a9ce6a69fbafb71 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a9ce6a69fbafb71 .ap-icon {
  margin-right: 6px;
}
#a9ce6a69fbafb71 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a9ce6a69fbafb71 .menu-list > li.icon-bottom > a,
#a9ce6a69fbafb71 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a9ce6a69fbafb71 .menu-list > li.icon-bottom > a .ap-icon,
#a9ce6a69fbafb71 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a9ce6a69fbafb71 .menu-list > li.icon-bottom > a .ap-icon svg,
#a9ce6a69fbafb71 .menu-list > li.icon-top > a .ap-icon svg,
#a9ce6a69fbafb71 .menu-list > li.icon-bottom > a .ap-icon img,
#a9ce6a69fbafb71 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a9ce6a69fbafb71 .menu-list > li.icon-right > a .ap-icon,
#a9ce6a69fbafb71 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a9ce6a69fbafb71 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a9ce6a69fbafb71 .menu-list > li:hover > a,
#a9ce6a69fbafb71 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a9ce6a69fbafb71 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a9ce6a69fbafb71 .menu-list ul,
#a9ce6a69fbafb71 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a9ce6a69fbafb71 .menu-list ul {
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}
#a9ce6a69fbafb71 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a9ce6a69fbafb71 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a9ce6a69fbafb71 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a59e6a8589ac164 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1037a0415a7330 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#aafd7aaef2ad22a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a5030a7ddaa7e63 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8a06aec31a4bc9 a, #a8a06aec31a4bc9 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a8a06aec31a4bc9 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a8184a5e93a6aae > .ele-wrap {background-color: rgba(255, 255, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8361ab678a7628 .form-agree {
  display: flex;
  align-items: center;
}
#a8361ab678a7628 .uk-form .form-submit-btn {
  width: 120px;
}
#a8361ab678a7628 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a8361ab678a7628 .submit-wrap {
  text-align: center;
}
#a8361ab678a7628 .submit-wrap button {
  background-color: #238bcd;
}
#a8361ab678a7628 .submit-wrap button:hover {
  background-color: #ff6600;
}
#a8361ab678a7628 .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a8361ab678a7628 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a8361ab678a7628 .form-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
}
#a8361ab678a7628 .form-item .uk-input,
#a8361ab678a7628 .form-item .uk-select,
#a8361ab678a7628 .form-item .uk-textarea {
  border: none !important;
}
#a8361ab678a7628 .form-item .uk-input,
#a8361ab678a7628 .form-item .uk-select,
#a8361ab678a7628 .form-item .uk-textarea {
  width: autopx;
}
#a8361ab678a7628 .form-item .auto-height {
  height: auto;
}
#a8361ab678a7628 .uk-form-label,
#a8361ab678a7628 .form-agree,
#a8361ab678a7628 .uk-h3,
#a8361ab678a7628 p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a8361ab678a7628 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}
#a8361ab678a7628 .form-item > label {
  flex: none;
}
#a8361ab678a7628 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#a8361ab678a7628 .form-item .uk-input,
#a8361ab678a7628 .form-item .uk-select,
#a8361ab678a7628 .form-item .uk-textarea,
#a8361ab678a7628 .form-item .address-select,
#a8361ab678a7628 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#a8361ab678a7628 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a8bfeaf7e4af073 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a62b4adc57ab34b > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ac7b9a5233a759a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a5760a45eaa5053 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5760a45eaa5053 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5760a45eaa5053 .ap-icon {
  margin-right: 6px;
}
#a5760a45eaa5053 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a5760a45eaa5053 .menu-list > li.icon-bottom > a,
#a5760a45eaa5053 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5760a45eaa5053 .menu-list > li.icon-bottom > a .ap-icon,
#a5760a45eaa5053 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5760a45eaa5053 .menu-list > li.icon-bottom > a .ap-icon svg,
#a5760a45eaa5053 .menu-list > li.icon-top > a .ap-icon svg,
#a5760a45eaa5053 .menu-list > li.icon-bottom > a .ap-icon img,
#a5760a45eaa5053 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5760a45eaa5053 .menu-list > li.icon-right > a .ap-icon,
#a5760a45eaa5053 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5760a45eaa5053 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5760a45eaa5053 .menu-list > li:hover > a,
#a5760a45eaa5053 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5760a45eaa5053 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5760a45eaa5053 .menu-list ul,
#a5760a45eaa5053 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5760a45eaa5053 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a5760a45eaa5053 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5760a45eaa5053 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5760a45eaa5053 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ade6cae124a6861 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ade6cae124a6861 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ade6cae124a6861 .ap-icon {
  margin-right: 6px;
}
#ade6cae124a6861 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ade6cae124a6861 .menu-list > li.icon-bottom > a,
#ade6cae124a6861 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ade6cae124a6861 .menu-list > li.icon-bottom > a .ap-icon,
#ade6cae124a6861 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ade6cae124a6861 .menu-list > li.icon-bottom > a .ap-icon svg,
#ade6cae124a6861 .menu-list > li.icon-top > a .ap-icon svg,
#ade6cae124a6861 .menu-list > li.icon-bottom > a .ap-icon img,
#ade6cae124a6861 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ade6cae124a6861 .menu-list > li.icon-right > a .ap-icon,
#ade6cae124a6861 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ade6cae124a6861 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ade6cae124a6861 .menu-list > li:hover > a,
#ade6cae124a6861 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ade6cae124a6861 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ade6cae124a6861 .menu-list ul,
#ade6cae124a6861 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ade6cae124a6861 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#ade6cae124a6861 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ade6cae124a6861 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ade6cae124a6861 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a37d0ab7bcae421 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a37d0ab7bcae421 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a37d0ab7bcae421 .ap-icon {
  margin-right: 6px;
}
#a37d0ab7bcae421 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a37d0ab7bcae421 .menu-list > li.icon-bottom > a,
#a37d0ab7bcae421 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a37d0ab7bcae421 .menu-list > li.icon-bottom > a .ap-icon,
#a37d0ab7bcae421 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a37d0ab7bcae421 .menu-list > li.icon-bottom > a .ap-icon svg,
#a37d0ab7bcae421 .menu-list > li.icon-top > a .ap-icon svg,
#a37d0ab7bcae421 .menu-list > li.icon-bottom > a .ap-icon img,
#a37d0ab7bcae421 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a37d0ab7bcae421 .menu-list > li.icon-right > a .ap-icon,
#a37d0ab7bcae421 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a37d0ab7bcae421 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a37d0ab7bcae421 .menu-list > li:hover > a,
#a37d0ab7bcae421 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a37d0ab7bcae421 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a37d0ab7bcae421 .menu-list ul,
#a37d0ab7bcae421 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a37d0ab7bcae421 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a37d0ab7bcae421 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a37d0ab7bcae421 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a37d0ab7bcae421 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#abf56a84f9aa6bd .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#abf56a84f9aa6bd .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#abf56a84f9aa6bd .ap-icon {
  margin-right: 6px;
}
#abf56a84f9aa6bd .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#abf56a84f9aa6bd .menu-list > li.icon-bottom > a,
#abf56a84f9aa6bd .menu-list > li.icon-top > a {
  flex-direction: column;
}
#abf56a84f9aa6bd .menu-list > li.icon-bottom > a .ap-icon,
#abf56a84f9aa6bd .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#abf56a84f9aa6bd .menu-list > li.icon-bottom > a .ap-icon svg,
#abf56a84f9aa6bd .menu-list > li.icon-top > a .ap-icon svg,
#abf56a84f9aa6bd .menu-list > li.icon-bottom > a .ap-icon img,
#abf56a84f9aa6bd .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#abf56a84f9aa6bd .menu-list > li.icon-right > a .ap-icon,
#abf56a84f9aa6bd .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#abf56a84f9aa6bd .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#abf56a84f9aa6bd .menu-list > li:hover > a,
#abf56a84f9aa6bd .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#abf56a84f9aa6bd .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#abf56a84f9aa6bd .menu-list ul,
#abf56a84f9aa6bd .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#abf56a84f9aa6bd .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#abf56a84f9aa6bd .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abf56a84f9aa6bd .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abf56a84f9aa6bd .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ac813a7c7aad229 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac813a7c7aad229 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac813a7c7aad229 .ap-icon {
  margin-right: 6px;
}
#ac813a7c7aad229 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ac813a7c7aad229 .menu-list > li.icon-bottom > a,
#ac813a7c7aad229 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac813a7c7aad229 .menu-list > li.icon-bottom > a .ap-icon,
#ac813a7c7aad229 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac813a7c7aad229 .menu-list > li.icon-bottom > a .ap-icon svg,
#ac813a7c7aad229 .menu-list > li.icon-top > a .ap-icon svg,
#ac813a7c7aad229 .menu-list > li.icon-bottom > a .ap-icon img,
#ac813a7c7aad229 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac813a7c7aad229 .menu-list > li.icon-right > a .ap-icon,
#ac813a7c7aad229 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac813a7c7aad229 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac813a7c7aad229 .menu-list > li:hover > a,
#ac813a7c7aad229 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ac813a7c7aad229 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ac813a7c7aad229 .menu-list ul,
#ac813a7c7aad229 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac813a7c7aad229 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ac813a7c7aad229 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac813a7c7aad229 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac813a7c7aad229 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a7228a4bcca384f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0345ac7ddabeda .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a82b0a3d0faa789 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a8c8fa2108a71e4 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2140ab316a3890 a, #a2140ab316a3890 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a2140ab316a3890 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a76d6ae49aabaf8 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(238, 238, 238, 1);border-right-color: rgba(238, 238, 238, 1);border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);}#acedfa6e4dad1f7 .ae938ab622a50aa {
  overflow: hidden;
}
#acedfa6e4dad1f7 .ae938ab622a50aa , #acedfa6e4dad1f7 .ae938ab622a50aa > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(34, 34, 34, 1);}#acedfa6e4dad1f7 .ae938ab622a50aa:hover , #acedfa6e4dad1f7 .ae938ab622a50aa *:hover {
        font-weight: normal;
        font-style: normal;
    font-family: inherit;color: rgba(0, 122, 195, 1);}#acedfa6e4dad1f7 .a6aa0acdeea5f73 > .ele-wrap {background-color: rgba(238, 238, 238, 0.8);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acedfa6e4dad1f7 .ae51ba7fabab9a3 {
  overflow: hidden;
}
#acedfa6e4dad1f7 .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#acedfa6e4dad1f7 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #acedfa6e4dad1f7 .uk-position-center-left-out {
    left: -30px;
  }
  #acedfa6e4dad1f7 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#abf1eaac36a61f9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a30a4a26e5a6734 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a03d3a8650ab059 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#afe39a7585a00a0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#afe39a7585a00a0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#afe39a7585a00a0 .ap-icon {
  margin-right: 6px;
}
#afe39a7585a00a0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#afe39a7585a00a0 .menu-list > li.icon-bottom > a,
#afe39a7585a00a0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#afe39a7585a00a0 .menu-list > li.icon-bottom > a .ap-icon,
#afe39a7585a00a0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#afe39a7585a00a0 .menu-list > li.icon-bottom > a .ap-icon svg,
#afe39a7585a00a0 .menu-list > li.icon-top > a .ap-icon svg,
#afe39a7585a00a0 .menu-list > li.icon-bottom > a .ap-icon img,
#afe39a7585a00a0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#afe39a7585a00a0 .menu-list > li.icon-right > a .ap-icon,
#afe39a7585a00a0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#afe39a7585a00a0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#afe39a7585a00a0 .menu-list > li:hover > a,
#afe39a7585a00a0 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#afe39a7585a00a0 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#afe39a7585a00a0 .menu-list ul,
#afe39a7585a00a0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#afe39a7585a00a0 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#afe39a7585a00a0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#afe39a7585a00a0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#afe39a7585a00a0 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae7e5a84afaa278 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae7e5a84afaa278 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae7e5a84afaa278 .ap-icon {
  margin-right: 6px;
}
#ae7e5a84afaa278 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ae7e5a84afaa278 .menu-list > li.icon-bottom > a,
#ae7e5a84afaa278 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae7e5a84afaa278 .menu-list > li.icon-bottom > a .ap-icon,
#ae7e5a84afaa278 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae7e5a84afaa278 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae7e5a84afaa278 .menu-list > li.icon-top > a .ap-icon svg,
#ae7e5a84afaa278 .menu-list > li.icon-bottom > a .ap-icon img,
#ae7e5a84afaa278 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae7e5a84afaa278 .menu-list > li.icon-right > a .ap-icon,
#ae7e5a84afaa278 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae7e5a84afaa278 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae7e5a84afaa278 .menu-list > li:hover > a,
#ae7e5a84afaa278 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae7e5a84afaa278 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae7e5a84afaa278 .menu-list ul,
#ae7e5a84afaa278 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae7e5a84afaa278 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#ae7e5a84afaa278 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae7e5a84afaa278 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae7e5a84afaa278 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8cc5a03fcac39a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8cc5a03fcac39a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8cc5a03fcac39a .ap-icon {
  margin-right: 6px;
}
#a8cc5a03fcac39a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a8cc5a03fcac39a .menu-list > li.icon-bottom > a,
#a8cc5a03fcac39a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8cc5a03fcac39a .menu-list > li.icon-bottom > a .ap-icon,
#a8cc5a03fcac39a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8cc5a03fcac39a .menu-list > li.icon-bottom > a .ap-icon svg,
#a8cc5a03fcac39a .menu-list > li.icon-top > a .ap-icon svg,
#a8cc5a03fcac39a .menu-list > li.icon-bottom > a .ap-icon img,
#a8cc5a03fcac39a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8cc5a03fcac39a .menu-list > li.icon-right > a .ap-icon,
#a8cc5a03fcac39a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8cc5a03fcac39a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8cc5a03fcac39a .menu-list > li:hover > a,
#a8cc5a03fcac39a .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8cc5a03fcac39a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a8cc5a03fcac39a .menu-list ul,
#a8cc5a03fcac39a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8cc5a03fcac39a .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a8cc5a03fcac39a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8cc5a03fcac39a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8cc5a03fcac39a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1390a4cb3a1657 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1390a4cb3a1657 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1390a4cb3a1657 .ap-icon {
  margin-right: 6px;
}
#a1390a4cb3a1657 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a1390a4cb3a1657 .menu-list > li.icon-bottom > a,
#a1390a4cb3a1657 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1390a4cb3a1657 .menu-list > li.icon-bottom > a .ap-icon,
#a1390a4cb3a1657 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1390a4cb3a1657 .menu-list > li.icon-bottom > a .ap-icon svg,
#a1390a4cb3a1657 .menu-list > li.icon-top > a .ap-icon svg,
#a1390a4cb3a1657 .menu-list > li.icon-bottom > a .ap-icon img,
#a1390a4cb3a1657 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1390a4cb3a1657 .menu-list > li.icon-right > a .ap-icon,
#a1390a4cb3a1657 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1390a4cb3a1657 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1390a4cb3a1657 .menu-list > li:hover > a,
#a1390a4cb3a1657 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1390a4cb3a1657 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a1390a4cb3a1657 .menu-list ul,
#a1390a4cb3a1657 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1390a4cb3a1657 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a1390a4cb3a1657 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1390a4cb3a1657 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1390a4cb3a1657 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a5840a2a83a67f3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5840a2a83a67f3 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5840a2a83a67f3 .ap-icon {
  margin-right: 6px;
}
#a5840a2a83a67f3 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a5840a2a83a67f3 .menu-list > li.icon-bottom > a,
#a5840a2a83a67f3 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5840a2a83a67f3 .menu-list > li.icon-bottom > a .ap-icon,
#a5840a2a83a67f3 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5840a2a83a67f3 .menu-list > li.icon-bottom > a .ap-icon svg,
#a5840a2a83a67f3 .menu-list > li.icon-top > a .ap-icon svg,
#a5840a2a83a67f3 .menu-list > li.icon-bottom > a .ap-icon img,
#a5840a2a83a67f3 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5840a2a83a67f3 .menu-list > li.icon-right > a .ap-icon,
#a5840a2a83a67f3 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5840a2a83a67f3 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5840a2a83a67f3 .menu-list > li:hover > a,
#a5840a2a83a67f3 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5840a2a83a67f3 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5840a2a83a67f3 .menu-list ul,
#a5840a2a83a67f3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5840a2a83a67f3 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a5840a2a83a67f3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5840a2a83a67f3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5840a2a83a67f3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af15dae448aa1a5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1bb1ac0caa9a20 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a4092abe48ac6a8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aabe6a5981a2f34 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ab25ea7345a0996 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a3f1ca9bf7a436f .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3f1ca9bf7a436f .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3f1ca9bf7a436f .ap-icon {
  margin-right: 6px;
}
#a3f1ca9bf7a436f .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a3f1ca9bf7a436f .menu-list > li.icon-bottom > a,
#a3f1ca9bf7a436f .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3f1ca9bf7a436f .menu-list > li.icon-bottom > a .ap-icon,
#a3f1ca9bf7a436f .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3f1ca9bf7a436f .menu-list > li.icon-bottom > a .ap-icon svg,
#a3f1ca9bf7a436f .menu-list > li.icon-top > a .ap-icon svg,
#a3f1ca9bf7a436f .menu-list > li.icon-bottom > a .ap-icon img,
#a3f1ca9bf7a436f .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3f1ca9bf7a436f .menu-list > li.icon-right > a .ap-icon,
#a3f1ca9bf7a436f .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3f1ca9bf7a436f .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3f1ca9bf7a436f .menu-list > li:hover > a,
#a3f1ca9bf7a436f .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3f1ca9bf7a436f .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3f1ca9bf7a436f .menu-list ul,
#a3f1ca9bf7a436f .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3f1ca9bf7a436f .menu-list ul {
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}
#a3f1ca9bf7a436f .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3f1ca9bf7a436f .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3f1ca9bf7a436f .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a964cab9c0add5d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9675a66caa58ef > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ab3ada5f20a920b > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab94aa8c84a9739 a, #ab94aa8c84a9739 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#ab94aa8c84a9739 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a0cada009fa706d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(155, 155, 155, 0.2);border-right-color: rgba(155, 155, 155, 0.2);border-left-color: rgba(155, 155, 155, 0.2);border-bottom-color: rgba(155, 155, 155, 0.2);}#ad644aee69a38a9 .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(155, 155, 155, 0.2);border-radius: 0px;justify-content: center;border-style: solid;}#ad644aee69a38a9 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(155, 155, 155, 0.2);border-color: rgba(249, 249, 249, 1);}#a6a39a6982a815b .a88d3a3fcda89cb {
  overflow: hidden;
}
#a6a39a6982a815b .a75c7ab99eae958 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a6a39a6982a815b .aa260a3516a882e {
  overflow: hidden;
}
#a6a39a6982a815b .aa260a3516a882e , #a6a39a6982a815b .aa260a3516a882e > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a6a39a6982a815b .ac816a23d6a55d0 .ele-wrap {color: #9b9b9b;border-width: 0px;border-style: solid;font-size: 14px;background-color: rgba(241, 241, 241, 1);justify-content: center;}#a6a39a6982a815b .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6a39a6982a815b .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a6a39a6982a815b .uk-position-center-left-out {
    left: -30px;
  }
  #a6a39a6982a815b .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a21d6a7379a0168 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(155, 155, 155, 0.2);border-right-color: rgba(155, 155, 155, 0.2);border-left-color: rgba(155, 155, 155, 0.2);border-bottom-color: rgba(155, 155, 155, 0.2);}#ab4cca317fa1e59 .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(155, 155, 155, 0.2);border-radius: 0px;justify-content: center;border-style: solid;}#ab4cca317fa1e59 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(155, 155, 155, 0.2);border-color: rgba(249, 249, 249, 1);}#a242fa65fcafd88 .a33ada769aa52b1 {
  overflow: hidden;
}
#a242fa65fcafd88 .abeaeae316a1329 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a242fa65fcafd88 .aceaaaa39ca4ca2 {
  overflow: hidden;
}
#a242fa65fcafd88 .aceaaaa39ca4ca2 , #a242fa65fcafd88 .aceaaaa39ca4ca2 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#a242fa65fcafd88 .a5aaba0fb5a8f48 .ele-wrap {color: #9b9b9b;border-width: 0px;border-style: solid;font-size: 14px;background-color: rgba(241, 241, 241, 1);justify-content: center;}#a242fa65fcafd88 .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a242fa65fcafd88 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a242fa65fcafd88 .uk-position-center-left-out {
    left: -30px;
  }
  #a242fa65fcafd88 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#af5faaf5e9adabc > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(155, 155, 155, 0.2);border-right-color: rgba(155, 155, 155, 0.2);border-left-color: rgba(155, 155, 155, 0.2);border-bottom-color: rgba(155, 155, 155, 0.2);}#af6eaad24da7b6f .ele-wrap {color: #000000;font-size: 20px;font-weight: 700;background-color: rgba(155, 155, 155, 0.2);border-radius: 0px;justify-content: center;border-style: solid;}#af6eaad24da7b6f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(155, 155, 155, 0.2);border-color: rgba(249, 249, 249, 1);}#ad3e5a5d65aac03 .a128ba1a06ab24a {
  overflow: hidden;
}
#ad3e5a5d65aac03 .adf7fac607a5319 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ad3e5a5d65aac03 .a0f6ea35a9a5dc4 {
  overflow: hidden;
}
#ad3e5a5d65aac03 .a0f6ea35a9a5dc4 , #ad3e5a5d65aac03 .a0f6ea35a9a5dc4 > * {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#ad3e5a5d65aac03 .a44b4a6025a1dd1 .ele-wrap {color: #9b9b9b;border-width: 0px;border-style: solid;font-size: 14px;background-color: rgba(241, 241, 241, 1);justify-content: center;}#ad3e5a5d65aac03 .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ad3e5a5d65aac03 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ad3e5a5d65aac03 .uk-position-center-left-out {
    left: -30px;
  }
  #ad3e5a5d65aac03 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a779fa1b3dace92 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a3c5da3245a7a70 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a0b77a2517ae19c > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a92fea2b09a1be4 a, #a92fea2b09a1be4 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a92fea2b09a1be4 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a781baf4c0af5d7 .form-agree {
  display: flex;
  align-items: center;
}
#a781baf4c0af5d7 .uk-form .form-submit-btn {
  width: 120px;
}
#a781baf4c0af5d7 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a781baf4c0af5d7 .submit-wrap {
  text-align: center;
}
#a781baf4c0af5d7 .submit-wrap button {
  background-color: #238bcd;
}
#a781baf4c0af5d7 .submit-wrap button:hover {
  background-color: #ff6600;
}
#a781baf4c0af5d7 .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a781baf4c0af5d7 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a781baf4c0af5d7 .form-item .uk-input,
#a781baf4c0af5d7 .form-item .uk-select,
#a781baf4c0af5d7 .form-item .uk-textarea {
  width: autopx;
}
#a781baf4c0af5d7 .form-item .auto-height {
  height: auto;
}
#a781baf4c0af5d7 .uk-form-label,
#a781baf4c0af5d7 .form-agree,
#a781baf4c0af5d7 .uk-h3,
#a781baf4c0af5d7 p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a781baf4c0af5d7 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#a781baf4c0af5d7 .form-item > label {
  flex: none;
}
#a781baf4c0af5d7 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#a781baf4c0af5d7 .form-item .uk-input,
#a781baf4c0af5d7 .form-item .uk-select,
#a781baf4c0af5d7 .form-item .uk-textarea,
#a781baf4c0af5d7 .form-item .address-select,
#a781baf4c0af5d7 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#a781baf4c0af5d7 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ad7ebadf19a3f96 .form-agree {
  display: flex;
  align-items: center;
}
#ad7ebadf19a3f96 .uk-form .form-submit-btn {
  width: 120px;
}
#ad7ebadf19a3f96 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#ad7ebadf19a3f96 .submit-wrap {
  text-align: center;
}
#ad7ebadf19a3f96 .submit-wrap button {
  background-color: #238bcd;
}
#ad7ebadf19a3f96 .submit-wrap button:hover {
  background-color: #ff6600;
}
#ad7ebadf19a3f96 .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#ad7ebadf19a3f96 form {
  padding-top: 0px;
  padding-bottom: 0px;
}
#ad7ebadf19a3f96 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#ad7ebadf19a3f96 .form-item .uk-input,
#ad7ebadf19a3f96 .form-item .uk-select,
#ad7ebadf19a3f96 .form-item .uk-textarea {
  width: autopx;
}
#ad7ebadf19a3f96 .form-item .auto-height {
  height: auto;
}
#ad7ebadf19a3f96 .uk-form-label,
#ad7ebadf19a3f96 .form-agree,
#ad7ebadf19a3f96 .uk-h3,
#ad7ebadf19a3f96 p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ad7ebadf19a3f96 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#ad7ebadf19a3f96 .form-item > label {
  flex: none;
}
#ad7ebadf19a3f96 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#ad7ebadf19a3f96 .form-item .uk-input,
#ad7ebadf19a3f96 .form-item .uk-select,
#ad7ebadf19a3f96 .form-item .uk-textarea,
#ad7ebadf19a3f96 .form-item .address-select,
#ad7ebadf19a3f96 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#ad7ebadf19a3f96 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a510badf1fa7cb8 {
  overflow: hidden;
  pointer-events: none;
}
#a510badf1fa7cb8 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a510badf1fa7cb8 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a510badf1fa7cb8 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a510badf1fa7cb8 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a510badf1fa7cb8 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a510badf1fa7cb8 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav,
#a510badf1fa7cb8 > .tab-nav,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #eeeeee;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav-horizontal,
#a510badf1fa7cb8 > .tab-nav-horizontal,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a510badf1fa7cb8 > .tab-nav-horizontal::-webkit-scrollbar,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a510badf1fa7cb8 > .tab-nav-horizontal.tagScroll,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a510badf1fa7cb8 > .tab-nav-horizontal.tagScroll li a,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav a,
#a510badf1fa7cb8 > .tab-nav a,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav a {
  padding: 0 100px;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav li a,
#a510badf1fa7cb8 > .tab-nav li a,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  padding: 0 100px;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav li a svg,
#a510badf1fa7cb8 > .tab-nav li a svg,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a510badf1fa7cb8 > .tab-nav li a .ap_icon,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav li a:hover,
#a510badf1fa7cb8 > .tab-nav li a:hover,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: solid;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav li.uk-active a,
#a510badf1fa7cb8 > .tab-nav li.uk-active a,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
  background-color: #238bcd;
}
#a510badf1fa7cb8 > .tab-wrap > div > .tab-nav li:last-child a,
#a510badf1fa7cb8 > .tab-nav li:last-child a,
#a510badf1fa7cb8 > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a510badf1fa7cb8 > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a510badf1fa7cb8 .layout-left li,
#a510badf1fa7cb8 .layout-center li,
#a510badf1fa7cb8 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a510badf1fa7cb8 .layout-left li a,
#a510badf1fa7cb8 .layout-center li a,
#a510badf1fa7cb8 .layout-right li a {
  height: 100%;
}
#a510badf1fa7cb8 > .tab-tabs .layout-left {
  text-align: left;
}
#a510badf1fa7cb8 > .tab-tabs .layout-center {
  text-align: center;
}
#a510badf1fa7cb8 > .tab-tabs .layout-right {
  text-align: right;
}
#a510badf1fa7cb8 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a510badf1fa7cb8 .tab-content-wrap {
  background-color: #ffffff;
}
#a510badf1fa7cb8 .tab-contents,
#a510badf1fa7cb8 .tab-contents-wrap {
  pointer-events: none;
}
#a510badf1fa7cb8 .tab-content,
#a510badf1fa7cb8 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a510badf1fa7cb8 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a510badf1fa7cb8 .tab-wrap .tab-contents {
  height: 100%;
}
#a510badf1fa7cb8 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a510badf1fa7cb8 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a510badf1fa7cb8 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a4a48a375fa0318 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4f65a3393a58c1 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a6328ac4b7ac29a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a6527a54e2a0623 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6527a54e2a0623 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6527a54e2a0623 .ap-icon {
  margin-right: 6px;
}
#a6527a54e2a0623 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a6527a54e2a0623 .menu-list > li.icon-bottom > a,
#a6527a54e2a0623 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6527a54e2a0623 .menu-list > li.icon-bottom > a .ap-icon,
#a6527a54e2a0623 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6527a54e2a0623 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6527a54e2a0623 .menu-list > li.icon-top > a .ap-icon svg,
#a6527a54e2a0623 .menu-list > li.icon-bottom > a .ap-icon img,
#a6527a54e2a0623 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6527a54e2a0623 .menu-list > li.icon-right > a .ap-icon,
#a6527a54e2a0623 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6527a54e2a0623 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6527a54e2a0623 .menu-list > li:hover > a,
#a6527a54e2a0623 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a6527a54e2a0623 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a6527a54e2a0623 .menu-list ul,
#a6527a54e2a0623 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6527a54e2a0623 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a6527a54e2a0623 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6527a54e2a0623 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6527a54e2a0623 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae5a3a5fa2a1c2b .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae5a3a5fa2a1c2b .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae5a3a5fa2a1c2b .ap-icon {
  margin-right: 6px;
}
#ae5a3a5fa2a1c2b .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ae5a3a5fa2a1c2b .menu-list > li.icon-bottom > a,
#ae5a3a5fa2a1c2b .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae5a3a5fa2a1c2b .menu-list > li.icon-bottom > a .ap-icon,
#ae5a3a5fa2a1c2b .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae5a3a5fa2a1c2b .menu-list > li.icon-bottom > a .ap-icon svg,
#ae5a3a5fa2a1c2b .menu-list > li.icon-top > a .ap-icon svg,
#ae5a3a5fa2a1c2b .menu-list > li.icon-bottom > a .ap-icon img,
#ae5a3a5fa2a1c2b .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae5a3a5fa2a1c2b .menu-list > li.icon-right > a .ap-icon,
#ae5a3a5fa2a1c2b .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae5a3a5fa2a1c2b .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae5a3a5fa2a1c2b .menu-list > li:hover > a,
#ae5a3a5fa2a1c2b .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae5a3a5fa2a1c2b .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae5a3a5fa2a1c2b .menu-list ul,
#ae5a3a5fa2a1c2b .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae5a3a5fa2a1c2b .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#ae5a3a5fa2a1c2b .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae5a3a5fa2a1c2b .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae5a3a5fa2a1c2b .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab604a7e8da4d37 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab604a7e8da4d37 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab604a7e8da4d37 .ap-icon {
  margin-right: 6px;
}
#ab604a7e8da4d37 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#ab604a7e8da4d37 .menu-list > li.icon-bottom > a,
#ab604a7e8da4d37 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab604a7e8da4d37 .menu-list > li.icon-bottom > a .ap-icon,
#ab604a7e8da4d37 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab604a7e8da4d37 .menu-list > li.icon-bottom > a .ap-icon svg,
#ab604a7e8da4d37 .menu-list > li.icon-top > a .ap-icon svg,
#ab604a7e8da4d37 .menu-list > li.icon-bottom > a .ap-icon img,
#ab604a7e8da4d37 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab604a7e8da4d37 .menu-list > li.icon-right > a .ap-icon,
#ab604a7e8da4d37 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab604a7e8da4d37 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab604a7e8da4d37 .menu-list > li:hover > a,
#ab604a7e8da4d37 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab604a7e8da4d37 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#ab604a7e8da4d37 .menu-list ul,
#ab604a7e8da4d37 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab604a7e8da4d37 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#ab604a7e8da4d37 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab604a7e8da4d37 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab604a7e8da4d37 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a291ba569ca5871 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a291ba569ca5871 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a291ba569ca5871 .ap-icon {
  margin-right: 6px;
}
#a291ba569ca5871 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a291ba569ca5871 .menu-list > li.icon-bottom > a,
#a291ba569ca5871 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a291ba569ca5871 .menu-list > li.icon-bottom > a .ap-icon,
#a291ba569ca5871 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a291ba569ca5871 .menu-list > li.icon-bottom > a .ap-icon svg,
#a291ba569ca5871 .menu-list > li.icon-top > a .ap-icon svg,
#a291ba569ca5871 .menu-list > li.icon-bottom > a .ap-icon img,
#a291ba569ca5871 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a291ba569ca5871 .menu-list > li.icon-right > a .ap-icon,
#a291ba569ca5871 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a291ba569ca5871 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a291ba569ca5871 .menu-list > li:hover > a,
#a291ba569ca5871 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a291ba569ca5871 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a291ba569ca5871 .menu-list ul,
#a291ba569ca5871 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a291ba569ca5871 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a291ba569ca5871 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a291ba569ca5871 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a291ba569ca5871 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2dbfa8401a95b0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a2dbfa8401a95b0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a2dbfa8401a95b0 .ap-icon {
  margin-right: 6px;
}
#a2dbfa8401a95b0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a2dbfa8401a95b0 .menu-list > li.icon-bottom > a,
#a2dbfa8401a95b0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a2dbfa8401a95b0 .menu-list > li.icon-bottom > a .ap-icon,
#a2dbfa8401a95b0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a2dbfa8401a95b0 .menu-list > li.icon-bottom > a .ap-icon svg,
#a2dbfa8401a95b0 .menu-list > li.icon-top > a .ap-icon svg,
#a2dbfa8401a95b0 .menu-list > li.icon-bottom > a .ap-icon img,
#a2dbfa8401a95b0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a2dbfa8401a95b0 .menu-list > li.icon-right > a .ap-icon,
#a2dbfa8401a95b0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a2dbfa8401a95b0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a2dbfa8401a95b0 .menu-list > li:hover > a,
#a2dbfa8401a95b0 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a2dbfa8401a95b0 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a2dbfa8401a95b0 .menu-list ul,
#a2dbfa8401a95b0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a2dbfa8401a95b0 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a2dbfa8401a95b0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a2dbfa8401a95b0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a2dbfa8401a95b0 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa030a867faae35 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae92aa59a9a26df .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ad286a28d6ac8e6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a488ba4caead162 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8ed6a7ad0abba2 a, #a8ed6a7ad0abba2 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a8ed6a7ad0abba2 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ac981a1629aae0b .uk-grid {
  margin-left: -15px;
}
#ac981a1629aae0b .uk-grid > * {
  padding-left: 15px;
}
#ac981a1629aae0b .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ac981a1629aae0b .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#ac981a1629aae0b .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ac981a1629aae0b .article .info {
  padding: 10px 10px;
  position: relative;
}
#ac981a1629aae0b .article .info p {
  margin: 10px 0 10px;
}
#ac981a1629aae0b .article svg {
  fill: currentColor;
}
#ac981a1629aae0b .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#ac981a1629aae0b .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#ac981a1629aae0b .article.list-icon .info {
  padding-left: 25px;
}
#ac981a1629aae0b .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#ac981a1629aae0b .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#ac981a1629aae0b .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #9b9b9b;
}
#ac981a1629aae0b .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ac981a1629aae0b .article:hover .title {
  color: #238bcd;
}
#ac981a1629aae0b .article:hover .datetime {
  color: #238bcd;
}
#ac981a1629aae0b .article:hover .category {
  color: #b6b6b6;
}
#ac981a1629aae0b .article:hover .abstract {
  color: #238bcd;
}
#ac981a1629aae0b .article:hover .btn_icon {
  color: #238bcd;
}
#ac981a1629aae0b .article:hover .list_icon {
  color: #238bcd;
}
#a59ada9e5ba5ab3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0e26a03e9aa7b8 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#abd6ba4fe2af45d > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a1cdaa5e8ca5ff0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1cdaa5e8ca5ff0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1cdaa5e8ca5ff0 .ap-icon {
  margin-right: 6px;
}
#a1cdaa5e8ca5ff0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a1cdaa5e8ca5ff0 .menu-list > li.icon-bottom > a,
#a1cdaa5e8ca5ff0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1cdaa5e8ca5ff0 .menu-list > li.icon-bottom > a .ap-icon,
#a1cdaa5e8ca5ff0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1cdaa5e8ca5ff0 .menu-list > li.icon-bottom > a .ap-icon svg,
#a1cdaa5e8ca5ff0 .menu-list > li.icon-top > a .ap-icon svg,
#a1cdaa5e8ca5ff0 .menu-list > li.icon-bottom > a .ap-icon img,
#a1cdaa5e8ca5ff0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1cdaa5e8ca5ff0 .menu-list > li.icon-right > a .ap-icon,
#a1cdaa5e8ca5ff0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1cdaa5e8ca5ff0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1cdaa5e8ca5ff0 .menu-list > li:hover > a,
#a1cdaa5e8ca5ff0 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1cdaa5e8ca5ff0 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1cdaa5e8ca5ff0 .menu-list ul,
#a1cdaa5e8ca5ff0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1cdaa5e8ca5ff0 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a1cdaa5e8ca5ff0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1cdaa5e8ca5ff0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1cdaa5e8ca5ff0 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a54c6a376cabcf2 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a54c6a376cabcf2 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a54c6a376cabcf2 .ap-icon {
  margin-right: 6px;
}
#a54c6a376cabcf2 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a54c6a376cabcf2 .menu-list > li.icon-bottom > a,
#a54c6a376cabcf2 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a54c6a376cabcf2 .menu-list > li.icon-bottom > a .ap-icon,
#a54c6a376cabcf2 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a54c6a376cabcf2 .menu-list > li.icon-bottom > a .ap-icon svg,
#a54c6a376cabcf2 .menu-list > li.icon-top > a .ap-icon svg,
#a54c6a376cabcf2 .menu-list > li.icon-bottom > a .ap-icon img,
#a54c6a376cabcf2 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a54c6a376cabcf2 .menu-list > li.icon-right > a .ap-icon,
#a54c6a376cabcf2 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a54c6a376cabcf2 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a54c6a376cabcf2 .menu-list > li:hover > a,
#a54c6a376cabcf2 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a54c6a376cabcf2 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a54c6a376cabcf2 .menu-list ul,
#a54c6a376cabcf2 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a54c6a376cabcf2 .menu-list ul {
  top: 146px;
  left: 50%;
  transform: translateX(-50%);
}
#a54c6a376cabcf2 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a54c6a376cabcf2 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a54c6a376cabcf2 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae8a0a3eceadf13 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae8a0a3eceadf13 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae8a0a3eceadf13 .ap-icon {
  margin-right: 6px;
}
#ae8a0a3eceadf13 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 150px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#ae8a0a3eceadf13 .menu-list > li.icon-bottom > a,
#ae8a0a3eceadf13 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae8a0a3eceadf13 .menu-list > li.icon-bottom > a .ap-icon,
#ae8a0a3eceadf13 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae8a0a3eceadf13 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae8a0a3eceadf13 .menu-list > li.icon-top > a .ap-icon svg,
#ae8a0a3eceadf13 .menu-list > li.icon-bottom > a .ap-icon img,
#ae8a0a3eceadf13 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae8a0a3eceadf13 .menu-list > li.icon-right > a .ap-icon,
#ae8a0a3eceadf13 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae8a0a3eceadf13 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae8a0a3eceadf13 .menu-list > li:hover > a,
#ae8a0a3eceadf13 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae8a0a3eceadf13 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#ae8a0a3eceadf13 .menu-list ul,
#ae8a0a3eceadf13 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae8a0a3eceadf13 .menu-list ul {
  top: 183px;
  left: 50%;
  transform: translateX(-50%);
}
#ae8a0a3eceadf13 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae8a0a3eceadf13 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae8a0a3eceadf13 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3a9da9e6fa21b2 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3a9da9e6fa21b2 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3a9da9e6fa21b2 .ap-icon {
  margin-right: 6px;
}
#a3a9da9e6fa21b2 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a3a9da9e6fa21b2 .menu-list > li.icon-bottom > a,
#a3a9da9e6fa21b2 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3a9da9e6fa21b2 .menu-list > li.icon-bottom > a .ap-icon,
#a3a9da9e6fa21b2 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3a9da9e6fa21b2 .menu-list > li.icon-bottom > a .ap-icon svg,
#a3a9da9e6fa21b2 .menu-list > li.icon-top > a .ap-icon svg,
#a3a9da9e6fa21b2 .menu-list > li.icon-bottom > a .ap-icon img,
#a3a9da9e6fa21b2 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3a9da9e6fa21b2 .menu-list > li.icon-right > a .ap-icon,
#a3a9da9e6fa21b2 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3a9da9e6fa21b2 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3a9da9e6fa21b2 .menu-list > li:hover > a,
#a3a9da9e6fa21b2 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3a9da9e6fa21b2 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a3a9da9e6fa21b2 .menu-list ul,
#a3a9da9e6fa21b2 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3a9da9e6fa21b2 .menu-list ul {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
#a3a9da9e6fa21b2 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3a9da9e6fa21b2 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3a9da9e6fa21b2 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2cf9a8b5eaa639 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a45d3aaf62ab90d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ab53aa821cac2e6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a890ba918faef20 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7134ae93ba7ef1 a, #a7134ae93ba7ef1 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a7134ae93ba7ef1 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a48f0a55fca9a54 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(238, 238, 238, 1);border-right-color: rgba(238, 238, 238, 1);border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);}#a2e6ba6735a426c .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a2e6ba6735a426c .uk-grid {
  margin-left: -30px;
}
#a2e6ba6735a426c .uk-grid > * {
  padding-left: 30px;
}
#a2e6ba6735a426c .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2e6ba6735a426c .uk-card {
  background-color: rgba(34, 101, 255, 0);
  transition: all .3s ease;
  background-color: rgba(0, 0, 0, 0);
}
#a2e6ba6735a426c .uk-card-media-top {
  overflow: hidden;
}
#a2e6ba6735a426c .uk-card-media-top .img {
  transition: all .3s ease;
}
#a2e6ba6735a426c .info {
  flex: 1;
  overflow: hidden;
  min-width: 1px;
  width: 0;
}
#a2e6ba6735a426c .datetime {
  padding: 4px;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  font-family: Arial;
}
#a2e6ba6735a426c .datetime b {
  font-size: 24px;
  font-weight: bolder;
  display: block;
}
#a2e6ba6735a426c .uk-card-body {
  padding: 15px 10px 8px;
}
#a2e6ba6735a426c hr {
  border-top-color: #b4b4b4;
  margin: 0 0 10px;
}
#a2e6ba6735a426c .uk-button {
  border: 1px solid #ececec;
}
#a2e6ba6735a426c .uk-card .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: center;
  font-family: inherit;
  color: #4a4a4a;
}
#a2e6ba6735a426c .uk-card .abstract {
  margin: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 12px;
  font-family: NotoSansSC-Light;
  color: #8bbaff;
}
#a2e6ba6735a426c .uk-card:hover {
  background-color: rgba(51, 51, 51, 0);
}
#a2e6ba6735a426c .uk-card:hover .title {
  color: #000000;
}
#a2e6ba6735a426c .uk-card:hover hr {
  border-top-color: rgba(77, 77, 77, 0);
}
#a2e6ba6735a426c .uk-card:hover .img {
  transform: scale(1.2);
}
#a2e6ba6735a426c .uk-card:hover .abstract {
  color: #fff;
}
#a2e6ba6735a426c .uk-card:hover .datetime {
  color: #d3b267;
}
#a2e6ba6735a426c .uk-card:hover .category {
  color: #d3b267;
}
#a2e6ba6735a426c .uk-card:hover .uk-button {
  color: #fff;
  background-color: #d3b267;
  border-color: #d3b267;
}
#a5ac9ac97ca9378 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a51c1abb0ea8644 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a1b7ea3b3aa717a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aa9d1ad524ac91a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa9d1ad524ac91a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa9d1ad524ac91a .ap-icon {
  margin-right: 6px;
}
#aa9d1ad524ac91a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#aa9d1ad524ac91a .menu-list > li.icon-bottom > a,
#aa9d1ad524ac91a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa9d1ad524ac91a .menu-list > li.icon-bottom > a .ap-icon,
#aa9d1ad524ac91a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa9d1ad524ac91a .menu-list > li.icon-bottom > a .ap-icon svg,
#aa9d1ad524ac91a .menu-list > li.icon-top > a .ap-icon svg,
#aa9d1ad524ac91a .menu-list > li.icon-bottom > a .ap-icon img,
#aa9d1ad524ac91a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa9d1ad524ac91a .menu-list > li.icon-right > a .ap-icon,
#aa9d1ad524ac91a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa9d1ad524ac91a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa9d1ad524ac91a .menu-list > li:hover > a,
#aa9d1ad524ac91a .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa9d1ad524ac91a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa9d1ad524ac91a .menu-list ul,
#aa9d1ad524ac91a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa9d1ad524ac91a .menu-list ul {
  top: 212px;
  left: 50%;
  transform: translateX(-50%);
}
#aa9d1ad524ac91a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa9d1ad524ac91a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa9d1ad524ac91a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1724adecfabb98 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aeb03a33a3ab53f .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ab602a9dafa01a5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a6f13aea06acd3b > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afdaea75e2a75d9 a, #afdaea75e2a75d9 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#afdaea75e2a75d9 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a8306aeaaaae973 .uk-grid {
  margin-left: -15px;
}
#a8306aeaaaae973 .uk-grid > * {
  padding-left: 15px;
}
#a8306aeaaaae973 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8306aeaaaae973 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a8306aeaaaae973 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a8306aeaaaae973 .article .info {
  padding: 10px 10px;
  position: relative;
}
#a8306aeaaaae973 .article .info p {
  margin: 10px 0 10px;
}
#a8306aeaaaae973 .article svg {
  fill: currentColor;
}
#a8306aeaaaae973 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#a8306aeaaaae973 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#a8306aeaaaae973 .article.list-icon .info {
  padding-left: 25px;
}
#a8306aeaaaae973 .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#a8306aeaaaae973 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a8306aeaaaae973 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a8306aeaaaae973 .article:hover .title {
  color: #238bcd;
}
#a8306aeaaaae973 .article:hover .datetime {
  color: #238bcd;
}
#a8306aeaaaae973 .article:hover .category {
  color: #b6b6b6;
}
#a8306aeaaaae973 .article:hover .abstract {
  color: #b6b6b6;
}
#a8306aeaaaae973 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a8306aeaaaae973 .article:hover .list_icon {
  color: #b6b6b6;
}
#ac4cfa48f5ab897 .uk-grid {
  margin-left: -15px;
}
#ac4cfa48f5ab897 .uk-grid > * {
  padding-left: 15px;
}
#ac4cfa48f5ab897 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ac4cfa48f5ab897 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#ac4cfa48f5ab897 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ac4cfa48f5ab897 .article .info {
  padding: 10px 10px;
  position: relative;
}
#ac4cfa48f5ab897 .article .info p {
  margin: 10px 0 10px;
}
#ac4cfa48f5ab897 .article svg {
  fill: currentColor;
}
#ac4cfa48f5ab897 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#ac4cfa48f5ab897 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#ac4cfa48f5ab897 .article.list-icon .info {
  padding-left: 25px;
}
#ac4cfa48f5ab897 .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#ac4cfa48f5ab897 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ac4cfa48f5ab897 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ac4cfa48f5ab897 .article:hover .title {
  color: #238bcd;
}
#ac4cfa48f5ab897 .article:hover .datetime {
  color: #238bcd;
}
#ac4cfa48f5ab897 .article:hover .category {
  color: #b6b6b6;
}
#ac4cfa48f5ab897 .article:hover .abstract {
  color: #b6b6b6;
}
#ac4cfa48f5ab897 .article:hover .btn_icon {
  color: #b6b6b6;
}
#ac4cfa48f5ab897 .article:hover .list_icon {
  color: #b6b6b6;
}
#a8c10afb44a2472 {
  overflow: hidden;
  pointer-events: none;
}
#a8c10afb44a2472 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a8c10afb44a2472 > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a8c10afb44a2472 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a8c10afb44a2472 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a8c10afb44a2472 > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a8c10afb44a2472 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav,
#a8c10afb44a2472 > .tab-nav,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a8c10afb44a2472 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f9f9f9;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: dotted;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-right-style: dashed;
  border-left-style: dashed;
  border-top-style: dashed;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav-horizontal,
#a8c10afb44a2472 > .tab-nav-horizontal,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a8c10afb44a2472 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a8c10afb44a2472 > .tab-nav-horizontal::-webkit-scrollbar,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a8c10afb44a2472 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a8c10afb44a2472 > .tab-nav-horizontal.tagScroll,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a8c10afb44a2472 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a8c10afb44a2472 > .tab-nav-horizontal.tagScroll li a,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a8c10afb44a2472 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav a,
#a8c10afb44a2472 > .tab-nav a,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a8c10afb44a2472 > .tab-tabs > .tab-nav a {
  padding: 0 10px;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav li a,
#a8c10afb44a2472 > .tab-nav li a,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a8c10afb44a2472 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 40px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 20px;
  margin-left: 20px;
  padding: 0 10px;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav li a svg,
#a8c10afb44a2472 > .tab-nav li a svg,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a8c10afb44a2472 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a8c10afb44a2472 > .tab-nav li a .ap_icon,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a8c10afb44a2472 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav li a:hover,
#a8c10afb44a2472 > .tab-nav li a:hover,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a8c10afb44a2472 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#a8c10afb44a2472 > .tab-wrap > div > .tab-nav li.uk-active a,
#a8c10afb44a2472 > .tab-nav li.uk-active a,
#a8c10afb44a2472 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a8c10afb44a2472 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#a8c10afb44a2472 .layout-left li,
#a8c10afb44a2472 .layout-center li,
#a8c10afb44a2472 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a8c10afb44a2472 .layout-left li a,
#a8c10afb44a2472 .layout-center li a,
#a8c10afb44a2472 .layout-right li a {
  height: 100%;
}
#a8c10afb44a2472 > .tab-tabs .layout-left {
  text-align: left;
}
#a8c10afb44a2472 > .tab-tabs .layout-center {
  text-align: center;
}
#a8c10afb44a2472 > .tab-tabs .layout-right {
  text-align: right;
}
#a8c10afb44a2472 .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#a8c10afb44a2472 .tab-content-wrap {
  background-color: transparent;
}
#a8c10afb44a2472 .tab-contents,
#a8c10afb44a2472 .tab-contents-wrap {
  pointer-events: none;
}
#a8c10afb44a2472 .tab-content,
#a8c10afb44a2472 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a8c10afb44a2472 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a8c10afb44a2472 .tab-wrap .tab-contents {
  height: 100%;
}
#a8c10afb44a2472 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a8c10afb44a2472 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a8c10afb44a2472 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#af4f2a3e64a0c1b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa06eaeda7a5d6c > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ab562ac550ac1f8 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a478ba12c9afd88 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a478ba12c9afd88 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a478ba12c9afd88 .ap-icon {
  margin-right: 6px;
}
#a478ba12c9afd88 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a478ba12c9afd88 .menu-list > li.icon-bottom > a,
#a478ba12c9afd88 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a478ba12c9afd88 .menu-list > li.icon-bottom > a .ap-icon,
#a478ba12c9afd88 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a478ba12c9afd88 .menu-list > li.icon-bottom > a .ap-icon svg,
#a478ba12c9afd88 .menu-list > li.icon-top > a .ap-icon svg,
#a478ba12c9afd88 .menu-list > li.icon-bottom > a .ap-icon img,
#a478ba12c9afd88 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a478ba12c9afd88 .menu-list > li.icon-right > a .ap-icon,
#a478ba12c9afd88 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a478ba12c9afd88 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a478ba12c9afd88 .menu-list > li:hover > a,
#a478ba12c9afd88 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a478ba12c9afd88 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a478ba12c9afd88 .menu-list ul,
#a478ba12c9afd88 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a478ba12c9afd88 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a478ba12c9afd88 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a478ba12c9afd88 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a478ba12c9afd88 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ad337ac30daed80 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad337ac30daed80 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad337ac30daed80 .ap-icon {
  margin-right: 6px;
}
#ad337ac30daed80 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ad337ac30daed80 .menu-list > li.icon-bottom > a,
#ad337ac30daed80 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad337ac30daed80 .menu-list > li.icon-bottom > a .ap-icon,
#ad337ac30daed80 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad337ac30daed80 .menu-list > li.icon-bottom > a .ap-icon svg,
#ad337ac30daed80 .menu-list > li.icon-top > a .ap-icon svg,
#ad337ac30daed80 .menu-list > li.icon-bottom > a .ap-icon img,
#ad337ac30daed80 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad337ac30daed80 .menu-list > li.icon-right > a .ap-icon,
#ad337ac30daed80 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad337ac30daed80 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad337ac30daed80 .menu-list > li:hover > a,
#ad337ac30daed80 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ad337ac30daed80 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ad337ac30daed80 .menu-list ul,
#ad337ac30daed80 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad337ac30daed80 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#ad337ac30daed80 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad337ac30daed80 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad337ac30daed80 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#add64ad20ea019f .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#add64ad20ea019f .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#add64ad20ea019f .ap-icon {
  margin-right: 6px;
}
#add64ad20ea019f .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#add64ad20ea019f .menu-list > li.icon-bottom > a,
#add64ad20ea019f .menu-list > li.icon-top > a {
  flex-direction: column;
}
#add64ad20ea019f .menu-list > li.icon-bottom > a .ap-icon,
#add64ad20ea019f .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#add64ad20ea019f .menu-list > li.icon-bottom > a .ap-icon svg,
#add64ad20ea019f .menu-list > li.icon-top > a .ap-icon svg,
#add64ad20ea019f .menu-list > li.icon-bottom > a .ap-icon img,
#add64ad20ea019f .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#add64ad20ea019f .menu-list > li.icon-right > a .ap-icon,
#add64ad20ea019f .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#add64ad20ea019f .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#add64ad20ea019f .menu-list > li:hover > a,
#add64ad20ea019f .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#add64ad20ea019f .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#add64ad20ea019f .menu-list ul,
#add64ad20ea019f .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#add64ad20ea019f .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#add64ad20ea019f .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#add64ad20ea019f .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#add64ad20ea019f .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af5a6a1faead250 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af5a6a1faead250 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af5a6a1faead250 .ap-icon {
  margin-right: 6px;
}
#af5a6a1faead250 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#af5a6a1faead250 .menu-list > li.icon-bottom > a,
#af5a6a1faead250 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af5a6a1faead250 .menu-list > li.icon-bottom > a .ap-icon,
#af5a6a1faead250 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af5a6a1faead250 .menu-list > li.icon-bottom > a .ap-icon svg,
#af5a6a1faead250 .menu-list > li.icon-top > a .ap-icon svg,
#af5a6a1faead250 .menu-list > li.icon-bottom > a .ap-icon img,
#af5a6a1faead250 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af5a6a1faead250 .menu-list > li.icon-right > a .ap-icon,
#af5a6a1faead250 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af5a6a1faead250 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af5a6a1faead250 .menu-list > li:hover > a,
#af5a6a1faead250 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af5a6a1faead250 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#af5a6a1faead250 .menu-list ul,
#af5a6a1faead250 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af5a6a1faead250 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#af5a6a1faead250 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af5a6a1faead250 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af5a6a1faead250 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3c92ad9cba6df6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3c92ad9cba6df6 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3c92ad9cba6df6 .ap-icon {
  margin-right: 6px;
}
#a3c92ad9cba6df6 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a3c92ad9cba6df6 .menu-list > li.icon-bottom > a,
#a3c92ad9cba6df6 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3c92ad9cba6df6 .menu-list > li.icon-bottom > a .ap-icon,
#a3c92ad9cba6df6 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3c92ad9cba6df6 .menu-list > li.icon-bottom > a .ap-icon svg,
#a3c92ad9cba6df6 .menu-list > li.icon-top > a .ap-icon svg,
#a3c92ad9cba6df6 .menu-list > li.icon-bottom > a .ap-icon img,
#a3c92ad9cba6df6 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3c92ad9cba6df6 .menu-list > li.icon-right > a .ap-icon,
#a3c92ad9cba6df6 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3c92ad9cba6df6 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3c92ad9cba6df6 .menu-list > li:hover > a,
#a3c92ad9cba6df6 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3c92ad9cba6df6 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3c92ad9cba6df6 .menu-list ul,
#a3c92ad9cba6df6 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3c92ad9cba6df6 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a3c92ad9cba6df6 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3c92ad9cba6df6 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3c92ad9cba6df6 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a14e7adabbab0d6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a267da4faea0eb2 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ab5a2a2c62a6fd5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aafd9aa49cae798 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6785acdeaa9d24 a, #a6785acdeaa9d24 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a6785acdeaa9d24 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a85dcad58ca38d7 .uk-grid {
  margin-left: -15px;
}
#a85dcad58ca38d7 .uk-grid > * {
  padding-left: 15px;
}
#a85dcad58ca38d7 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a85dcad58ca38d7 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a85dcad58ca38d7 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a85dcad58ca38d7 .article .info {
  padding: 10px 10px;
  position: relative;
}
#a85dcad58ca38d7 .article .info p {
  margin: 10px 0 10px;
}
#a85dcad58ca38d7 .article svg {
  fill: currentColor;
}
#a85dcad58ca38d7 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#a85dcad58ca38d7 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#a85dcad58ca38d7 .article.list-icon .info {
  padding-left: 25px;
}
#a85dcad58ca38d7 .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#a85dcad58ca38d7 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a85dcad58ca38d7 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a85dcad58ca38d7 .article:hover .title {
  color: #238bcd;
}
#a85dcad58ca38d7 .article:hover .datetime {
  color: #238bcd;
}
#a85dcad58ca38d7 .article:hover .category {
  color: #b6b6b6;
}
#a85dcad58ca38d7 .article:hover .abstract {
  color: #b6b6b6;
}
#a85dcad58ca38d7 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a85dcad58ca38d7 .article:hover .list_icon {
  color: #b6b6b6;
}
#acf72ac5b9ae45d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa3dea82cbab0ac > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a12eda1a73a2619 a, #a12eda1a73a2619 {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#aa90fa7c9baffcc .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a6146a11e7a3431 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a2f55a27c7a5715 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5bada4d3aa90e0 a, #a5bada4d3aa90e0 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5bada4d3aa90e0 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a2874a7446a09c5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(238, 238, 238, 1);border-right-color: rgba(238, 238, 238, 1);border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);}#a60bca7489a1e32 .af0ffa5b9faa6ba {
  overflow: hidden;
}
#a60bca7489a1e32 .af0ffa5b9faa6ba , #a60bca7489a1e32 .af0ffa5b9faa6ba > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: center;font-family: inherit;}#a60bca7489a1e32 .dynamic-list-item {
  border-top-width: 1px;
  border-top-color: #eeeeee;
  border-top-style: solid;
  border-right-color: #eeeeee;
  border-left-color: #eeeeee;
  border-bottom-color: #eeeeee;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a60bca7489a1e32 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a60bca7489a1e32 .uk-position-center-left-out {
    left: -30px;
  }
  #a60bca7489a1e32 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aac7ba7932abfc2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a01b2a6149ae59f > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a72eda205da6441 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aee03a43a0a63db .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aee03a43a0a63db .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aee03a43a0a63db .ap-icon {
  margin-right: 6px;
}
#aee03a43a0a63db .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#aee03a43a0a63db .menu-list > li.icon-bottom > a,
#aee03a43a0a63db .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aee03a43a0a63db .menu-list > li.icon-bottom > a .ap-icon,
#aee03a43a0a63db .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aee03a43a0a63db .menu-list > li.icon-bottom > a .ap-icon svg,
#aee03a43a0a63db .menu-list > li.icon-top > a .ap-icon svg,
#aee03a43a0a63db .menu-list > li.icon-bottom > a .ap-icon img,
#aee03a43a0a63db .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aee03a43a0a63db .menu-list > li.icon-right > a .ap-icon,
#aee03a43a0a63db .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aee03a43a0a63db .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aee03a43a0a63db .menu-list > li:hover > a,
#aee03a43a0a63db .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aee03a43a0a63db .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aee03a43a0a63db .menu-list ul,
#aee03a43a0a63db .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aee03a43a0a63db .menu-list ul {
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}
#aee03a43a0a63db .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aee03a43a0a63db .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aee03a43a0a63db .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ad4bfa0cf1a9920 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1ab5ad98ca4c5e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ae06ca774da2b78 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a8c51a4433aee4b > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4adaa1463a47ce a, #a4adaa1463a47ce {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a4adaa1463a47ce a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ad219a970aac958 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad1d3a4311ad98c > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#adc4bab61faae65 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#adc4bab61faae65 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#adc4bab61faae65 .ap-icon {
  margin-right: 6px;
}
#adc4bab61faae65 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#adc4bab61faae65 .menu-list > li.icon-bottom > a,
#adc4bab61faae65 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#adc4bab61faae65 .menu-list > li.icon-bottom > a .ap-icon,
#adc4bab61faae65 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#adc4bab61faae65 .menu-list > li.icon-bottom > a .ap-icon svg,
#adc4bab61faae65 .menu-list > li.icon-top > a .ap-icon svg,
#adc4bab61faae65 .menu-list > li.icon-bottom > a .ap-icon img,
#adc4bab61faae65 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#adc4bab61faae65 .menu-list > li.icon-right > a .ap-icon,
#adc4bab61faae65 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#adc4bab61faae65 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#adc4bab61faae65 .menu-list > li:hover > a,
#adc4bab61faae65 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#adc4bab61faae65 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#adc4bab61faae65 .menu-list ul,
#adc4bab61faae65 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#adc4bab61faae65 .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#adc4bab61faae65 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#adc4bab61faae65 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#adc4bab61faae65 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a514fa5b21ac9c7 .uk-grid {
  margin-left: -15px;
}
#a514fa5b21ac9c7 .uk-grid > * {
  padding-left: 15px;
}
#a514fa5b21ac9c7 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a514fa5b21ac9c7 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a514fa5b21ac9c7 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a514fa5b21ac9c7 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a514fa5b21ac9c7 .article .info p {
  margin: 10px 0 10px;
}
#a514fa5b21ac9c7 .article svg {
  fill: currentColor;
}
#a514fa5b21ac9c7 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a514fa5b21ac9c7 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a514fa5b21ac9c7 .article.list-icon .info {
  padding-left: 25px;
}
#a514fa5b21ac9c7 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a514fa5b21ac9c7 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a514fa5b21ac9c7 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a514fa5b21ac9c7 .article:hover .title {
  color: #238bcd;
}
#a514fa5b21ac9c7 .article:hover .datetime {
  color: #238bcd;
}
#a514fa5b21ac9c7 .article:hover .category {
  color: #b6b6b6;
}
#a514fa5b21ac9c7 .article:hover .abstract {
  color: #b6b6b6;
}
#a514fa5b21ac9c7 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a514fa5b21ac9c7 .article:hover .list_icon {
  color: #b6b6b6;
}
#a787fa7aa1a64e6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acd67a895cab244 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: dashed;border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;border-bottom-color: rgba(155, 155, 155, 0.3);border-right-color: rgba(155, 155, 155, 0.3);border-left-color: rgba(155, 155, 155, 0.3);border-top-color: rgba(155, 155, 155, 0.3);}#a455ba0008a23bd .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a455ba0008a23bd .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a455ba0008a23bd .ap-icon {
  margin-right: 6px;
}
#a455ba0008a23bd .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a455ba0008a23bd .menu-list > li.icon-bottom > a,
#a455ba0008a23bd .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a455ba0008a23bd .menu-list > li.icon-bottom > a .ap-icon,
#a455ba0008a23bd .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a455ba0008a23bd .menu-list > li.icon-bottom > a .ap-icon svg,
#a455ba0008a23bd .menu-list > li.icon-top > a .ap-icon svg,
#a455ba0008a23bd .menu-list > li.icon-bottom > a .ap-icon img,
#a455ba0008a23bd .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a455ba0008a23bd .menu-list > li.icon-right > a .ap-icon,
#a455ba0008a23bd .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a455ba0008a23bd .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a455ba0008a23bd .menu-list > li:hover > a,
#a455ba0008a23bd .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a455ba0008a23bd .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a455ba0008a23bd .menu-list ul,
#a455ba0008a23bd .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a455ba0008a23bd .menu-list ul {
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}
#a455ba0008a23bd .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a455ba0008a23bd .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a455ba0008a23bd .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a42c8a54e2afcaa .a4aeda74eeaca18 {
  overflow: hidden;
}
#a42c8a54e2afcaa .a4aeda74eeaca18 , #a42c8a54e2afcaa .a4aeda74eeaca18 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;}#a42c8a54e2afcaa .a3d66ad01ca5219 a, #a42c8a54e2afcaa .a3d66ad01ca5219 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a42c8a54e2afcaa .a13e4a178dab9bb , #a42c8a54e2afcaa .a13e4a178dab9bb a{color: rgba(180, 180, 180, 1);}#a42c8a54e2afcaa .a6521a0017a6a11  {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;}#a42c8a54e2afcaa .uk-grid > .uk-grid-margin {
  margin-top: 8px;
}
#a42c8a54e2afcaa .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #f2f2f2;
}
#a42c8a54e2afcaa .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a42c8a54e2afcaa .uk-position-center-left-out {
    left: -30px;
  }
  #a42c8a54e2afcaa .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0181a1e42ad696 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7999ab91da7f3a > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a0262ac17eae5eb > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a8725abce5a95db .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8725abce5a95db .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8725abce5a95db .ap-icon {
  margin-right: 6px;
}
#a8725abce5a95db .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a8725abce5a95db .menu-list > li.icon-bottom > a,
#a8725abce5a95db .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8725abce5a95db .menu-list > li.icon-bottom > a .ap-icon,
#a8725abce5a95db .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8725abce5a95db .menu-list > li.icon-bottom > a .ap-icon svg,
#a8725abce5a95db .menu-list > li.icon-top > a .ap-icon svg,
#a8725abce5a95db .menu-list > li.icon-bottom > a .ap-icon img,
#a8725abce5a95db .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8725abce5a95db .menu-list > li.icon-right > a .ap-icon,
#a8725abce5a95db .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8725abce5a95db .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8725abce5a95db .menu-list > li:hover > a,
#a8725abce5a95db .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8725abce5a95db .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8725abce5a95db .menu-list ul,
#a8725abce5a95db .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8725abce5a95db .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a8725abce5a95db .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8725abce5a95db .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8725abce5a95db .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a943ead193a1f74 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a943ead193a1f74 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a943ead193a1f74 .ap-icon {
  margin-right: 6px;
}
#a943ead193a1f74 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a943ead193a1f74 .menu-list > li.icon-bottom > a,
#a943ead193a1f74 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a943ead193a1f74 .menu-list > li.icon-bottom > a .ap-icon,
#a943ead193a1f74 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a943ead193a1f74 .menu-list > li.icon-bottom > a .ap-icon svg,
#a943ead193a1f74 .menu-list > li.icon-top > a .ap-icon svg,
#a943ead193a1f74 .menu-list > li.icon-bottom > a .ap-icon img,
#a943ead193a1f74 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a943ead193a1f74 .menu-list > li.icon-right > a .ap-icon,
#a943ead193a1f74 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a943ead193a1f74 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a943ead193a1f74 .menu-list > li:hover > a,
#a943ead193a1f74 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a943ead193a1f74 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a943ead193a1f74 .menu-list ul,
#a943ead193a1f74 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a943ead193a1f74 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#a943ead193a1f74 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a943ead193a1f74 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a943ead193a1f74 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab9b6ae84da4234 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab9b6ae84da4234 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab9b6ae84da4234 .ap-icon {
  margin-right: 6px;
}
#ab9b6ae84da4234 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#ab9b6ae84da4234 .menu-list > li.icon-bottom > a,
#ab9b6ae84da4234 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab9b6ae84da4234 .menu-list > li.icon-bottom > a .ap-icon,
#ab9b6ae84da4234 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab9b6ae84da4234 .menu-list > li.icon-bottom > a .ap-icon svg,
#ab9b6ae84da4234 .menu-list > li.icon-top > a .ap-icon svg,
#ab9b6ae84da4234 .menu-list > li.icon-bottom > a .ap-icon img,
#ab9b6ae84da4234 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab9b6ae84da4234 .menu-list > li.icon-right > a .ap-icon,
#ab9b6ae84da4234 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab9b6ae84da4234 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab9b6ae84da4234 .menu-list > li:hover > a,
#ab9b6ae84da4234 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab9b6ae84da4234 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#ab9b6ae84da4234 .menu-list ul,
#ab9b6ae84da4234 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab9b6ae84da4234 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#ab9b6ae84da4234 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab9b6ae84da4234 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab9b6ae84da4234 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a50e7aa1f9a65fa .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a50e7aa1f9a65fa .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a50e7aa1f9a65fa .ap-icon {
  margin-right: 6px;
}
#a50e7aa1f9a65fa .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a50e7aa1f9a65fa .menu-list > li.icon-bottom > a,
#a50e7aa1f9a65fa .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a50e7aa1f9a65fa .menu-list > li.icon-bottom > a .ap-icon,
#a50e7aa1f9a65fa .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a50e7aa1f9a65fa .menu-list > li.icon-bottom > a .ap-icon svg,
#a50e7aa1f9a65fa .menu-list > li.icon-top > a .ap-icon svg,
#a50e7aa1f9a65fa .menu-list > li.icon-bottom > a .ap-icon img,
#a50e7aa1f9a65fa .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a50e7aa1f9a65fa .menu-list > li.icon-right > a .ap-icon,
#a50e7aa1f9a65fa .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a50e7aa1f9a65fa .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a50e7aa1f9a65fa .menu-list > li:hover > a,
#a50e7aa1f9a65fa .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a50e7aa1f9a65fa .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a50e7aa1f9a65fa .menu-list ul,
#a50e7aa1f9a65fa .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a50e7aa1f9a65fa .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a50e7aa1f9a65fa .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a50e7aa1f9a65fa .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a50e7aa1f9a65fa .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ad36ca259ba8a54 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad36ca259ba8a54 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad36ca259ba8a54 .ap-icon {
  margin-right: 6px;
}
#ad36ca259ba8a54 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#ad36ca259ba8a54 .menu-list > li.icon-bottom > a,
#ad36ca259ba8a54 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad36ca259ba8a54 .menu-list > li.icon-bottom > a .ap-icon,
#ad36ca259ba8a54 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad36ca259ba8a54 .menu-list > li.icon-bottom > a .ap-icon svg,
#ad36ca259ba8a54 .menu-list > li.icon-top > a .ap-icon svg,
#ad36ca259ba8a54 .menu-list > li.icon-bottom > a .ap-icon img,
#ad36ca259ba8a54 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad36ca259ba8a54 .menu-list > li.icon-right > a .ap-icon,
#ad36ca259ba8a54 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad36ca259ba8a54 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad36ca259ba8a54 .menu-list > li:hover > a,
#ad36ca259ba8a54 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ad36ca259ba8a54 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ad36ca259ba8a54 .menu-list ul,
#ad36ca259ba8a54 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad36ca259ba8a54 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#ad36ca259ba8a54 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad36ca259ba8a54 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad36ca259ba8a54 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0a3da52afa38d6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8f02a7599a4e6e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a5d92ac262a349a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ad05da13ddae476 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5632a6253aa533 a, #a5632a6253aa533 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5632a6253aa533 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a48f3a20aba0d45 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a49ddab388a2eeb .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a49ddab388a2eeb .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a9a5fad4d7a35fe .uk-grid {
  margin-left: -15px;
}
#a9a5fad4d7a35fe .uk-grid > * {
  padding-left: 15px;
}
#a9a5fad4d7a35fe .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9a5fad4d7a35fe .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a9a5fad4d7a35fe .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a9a5fad4d7a35fe .article .info {
  padding: 8px 10px;
  position: relative;
}
#a9a5fad4d7a35fe .article .info p {
  margin: 10px 0 10px;
}
#a9a5fad4d7a35fe .article svg {
  fill: currentColor;
}
#a9a5fad4d7a35fe .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a9a5fad4d7a35fe .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a9a5fad4d7a35fe .article.list-icon .info {
  padding-left: 25px;
}
#a9a5fad4d7a35fe .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a9a5fad4d7a35fe .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a9a5fad4d7a35fe .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9a5fad4d7a35fe .article:hover .title {
  color: #238bcd;
}
#a9a5fad4d7a35fe .article:hover .datetime {
  color: #238bcd;
}
#a9a5fad4d7a35fe .article:hover .category {
  color: #b6b6b6;
}
#a9a5fad4d7a35fe .article:hover .abstract {
  color: #b6b6b6;
}
#a9a5fad4d7a35fe .article:hover .btn_icon {
  color: #b6b6b6;
}
#a9a5fad4d7a35fe .article:hover .list_icon {
  color: #b6b6b6;
}
#ac1f4a2cf6ae361 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3989a2097a2bca .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a3989a2097a2bca .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a346faffeda04c9 .uk-grid {
  margin-left: -15px;
}
#a346faffeda04c9 .uk-grid > * {
  padding-left: 15px;
}
#a346faffeda04c9 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a346faffeda04c9 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a346faffeda04c9 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
}
#a346faffeda04c9 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a346faffeda04c9 .article .info p {
  margin: 10px 0 10px;
}
#a346faffeda04c9 .article svg {
  fill: currentColor;
}
#a346faffeda04c9 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a346faffeda04c9 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a346faffeda04c9 .article.list-icon .info {
  padding-left: 25px;
}
#a346faffeda04c9 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a346faffeda04c9 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a346faffeda04c9 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a346faffeda04c9 .article:hover .title {
  color: #238bcd;
}
#a346faffeda04c9 .article:hover .datetime {
  color: #238bcd;
}
#a346faffeda04c9 .article:hover .category {
  color: #b6b6b6;
}
#a346faffeda04c9 .article:hover .abstract {
  color: #b6b6b6;
}
#a346faffeda04c9 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a346faffeda04c9 .article:hover .list_icon {
  color: #b6b6b6;
}
#a045aa1414aa5a2 .uk-grid {
  margin-left: -15px;
}
#a045aa1414aa5a2 .uk-grid > * {
  padding-left: 15px;
}
#a045aa1414aa5a2 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a045aa1414aa5a2 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a045aa1414aa5a2 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
}
#a045aa1414aa5a2 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a045aa1414aa5a2 .article .info p {
  margin: 10px 0 10px;
}
#a045aa1414aa5a2 .article svg {
  fill: currentColor;
}
#a045aa1414aa5a2 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a045aa1414aa5a2 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a045aa1414aa5a2 .article.list-icon .info {
  padding-left: 25px;
}
#a045aa1414aa5a2 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a045aa1414aa5a2 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a045aa1414aa5a2 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a045aa1414aa5a2 .article:hover .title {
  color: #238bcd;
}
#a045aa1414aa5a2 .article:hover .datetime {
  color: #238bcd;
}
#a045aa1414aa5a2 .article:hover .category {
  color: #b6b6b6;
}
#a045aa1414aa5a2 .article:hover .abstract {
  color: #b6b6b6;
}
#a045aa1414aa5a2 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a045aa1414aa5a2 .article:hover .list_icon {
  color: #b6b6b6;
}
#ab80ba73d9aebd0 .uk-grid {
  margin-left: -15px;
}
#ab80ba73d9aebd0 .uk-grid > * {
  padding-left: 15px;
}
#ab80ba73d9aebd0 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ab80ba73d9aebd0 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#ab80ba73d9aebd0 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
}
#ab80ba73d9aebd0 .article .info {
  padding: 8px 10px;
  position: relative;
}
#ab80ba73d9aebd0 .article .info p {
  margin: 10px 0 10px;
}
#ab80ba73d9aebd0 .article svg {
  fill: currentColor;
}
#ab80ba73d9aebd0 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#ab80ba73d9aebd0 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#ab80ba73d9aebd0 .article.list-icon .info {
  padding-left: 25px;
}
#ab80ba73d9aebd0 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#ab80ba73d9aebd0 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ab80ba73d9aebd0 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ab80ba73d9aebd0 .article:hover .title {
  color: #238bcd;
}
#ab80ba73d9aebd0 .article:hover .datetime {
  color: #238bcd;
}
#ab80ba73d9aebd0 .article:hover .category {
  color: #b6b6b6;
}
#ab80ba73d9aebd0 .article:hover .abstract {
  color: #b6b6b6;
}
#ab80ba73d9aebd0 .article:hover .btn_icon {
  color: #b6b6b6;
}
#ab80ba73d9aebd0 .article:hover .list_icon {
  color: #b6b6b6;
}
#a2f9ea6040ad07c {
  overflow: hidden;
  pointer-events: none;
}
#a2f9ea6040ad07c > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a2f9ea6040ad07c > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a2f9ea6040ad07c > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2f9ea6040ad07c > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a2f9ea6040ad07c > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a2f9ea6040ad07c > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav,
#a2f9ea6040ad07c > .tab-nav,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f9f9f9;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: dotted;
  border-right-color: rgba(204, 204, 204, 0.39);
  border-left-color: rgba(204, 204, 204, 0.39);
  border-top-color: rgba(204, 204, 204, 0.39);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-right-style: dashed;
  border-left-style: dashed;
  border-top-style: dashed;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav-horizontal,
#a2f9ea6040ad07c > .tab-nav-horizontal,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2f9ea6040ad07c > .tab-nav-horizontal::-webkit-scrollbar,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2f9ea6040ad07c > .tab-nav-horizontal.tagScroll,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2f9ea6040ad07c > .tab-nav-horizontal.tagScroll li a,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav a,
#a2f9ea6040ad07c > .tab-nav a,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav a {
  padding: 0 5px;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav li a,
#a2f9ea6040ad07c > .tab-nav li a,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 40px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 10px;
  margin-left: 10px;
  padding: 0 5px;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav li a svg,
#a2f9ea6040ad07c > .tab-nav li a svg,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2f9ea6040ad07c > .tab-nav li a .ap_icon,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav li a:hover,
#a2f9ea6040ad07c > .tab-nav li a:hover,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#a2f9ea6040ad07c > .tab-wrap > div > .tab-nav li.uk-active a,
#a2f9ea6040ad07c > .tab-nav li.uk-active a,
#a2f9ea6040ad07c > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a2f9ea6040ad07c > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
}
#a2f9ea6040ad07c .layout-left li,
#a2f9ea6040ad07c .layout-center li,
#a2f9ea6040ad07c .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a2f9ea6040ad07c .layout-left li a,
#a2f9ea6040ad07c .layout-center li a,
#a2f9ea6040ad07c .layout-right li a {
  height: 100%;
}
#a2f9ea6040ad07c > .tab-tabs .layout-left {
  text-align: left;
}
#a2f9ea6040ad07c > .tab-tabs .layout-center {
  text-align: center;
}
#a2f9ea6040ad07c > .tab-tabs .layout-right {
  text-align: right;
}
#a2f9ea6040ad07c .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#a2f9ea6040ad07c .tab-content-wrap {
  background-color: transparent;
}
#a2f9ea6040ad07c .tab-contents,
#a2f9ea6040ad07c .tab-contents-wrap {
  pointer-events: none;
}
#a2f9ea6040ad07c .tab-content,
#a2f9ea6040ad07c .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a2f9ea6040ad07c .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a2f9ea6040ad07c .tab-wrap .tab-contents {
  height: 100%;
}
#a2f9ea6040ad07c .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a2f9ea6040ad07c .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a2f9ea6040ad07c .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a21aea27eeaa9a1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4a7ca82a1ad777 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#af9e4acc4ca08a1 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a3934aa09ba7acb .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3934aa09ba7acb .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3934aa09ba7acb .ap-icon {
  margin-right: 6px;
}
#a3934aa09ba7acb .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
  height: nullpx;
}
#a3934aa09ba7acb .menu-list > li.icon-bottom > a,
#a3934aa09ba7acb .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3934aa09ba7acb .menu-list > li.icon-bottom > a .ap-icon,
#a3934aa09ba7acb .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3934aa09ba7acb .menu-list > li.icon-bottom > a .ap-icon svg,
#a3934aa09ba7acb .menu-list > li.icon-top > a .ap-icon svg,
#a3934aa09ba7acb .menu-list > li.icon-bottom > a .ap-icon img,
#a3934aa09ba7acb .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3934aa09ba7acb .menu-list > li.icon-right > a .ap-icon,
#a3934aa09ba7acb .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3934aa09ba7acb .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3934aa09ba7acb .menu-list > li:hover > a,
#a3934aa09ba7acb .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3934aa09ba7acb .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3934aa09ba7acb .menu-list ul,
#a3934aa09ba7acb .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3934aa09ba7acb .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#a3934aa09ba7acb .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3934aa09ba7acb .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3934aa09ba7acb .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2b27a3490a98c9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a2b27a3490a98c9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a2b27a3490a98c9 .ap-icon {
  margin-right: 6px;
}
#a2b27a3490a98c9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#a2b27a3490a98c9 .menu-list > li.icon-bottom > a,
#a2b27a3490a98c9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a2b27a3490a98c9 .menu-list > li.icon-bottom > a .ap-icon,
#a2b27a3490a98c9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a2b27a3490a98c9 .menu-list > li.icon-bottom > a .ap-icon svg,
#a2b27a3490a98c9 .menu-list > li.icon-top > a .ap-icon svg,
#a2b27a3490a98c9 .menu-list > li.icon-bottom > a .ap-icon img,
#a2b27a3490a98c9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a2b27a3490a98c9 .menu-list > li.icon-right > a .ap-icon,
#a2b27a3490a98c9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a2b27a3490a98c9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a2b27a3490a98c9 .menu-list > li:hover > a,
#a2b27a3490a98c9 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a2b27a3490a98c9 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a2b27a3490a98c9 .menu-list ul,
#a2b27a3490a98c9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a2b27a3490a98c9 .menu-list ul {
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
}
#a2b27a3490a98c9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a2b27a3490a98c9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a2b27a3490a98c9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a1db0a03e6aa8c9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1db0a03e6aa8c9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1db0a03e6aa8c9 .ap-icon {
  margin-right: 6px;
}
#a1db0a03e6aa8c9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 120px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a1db0a03e6aa8c9 .menu-list > li.icon-bottom > a,
#a1db0a03e6aa8c9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1db0a03e6aa8c9 .menu-list > li.icon-bottom > a .ap-icon,
#a1db0a03e6aa8c9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1db0a03e6aa8c9 .menu-list > li.icon-bottom > a .ap-icon svg,
#a1db0a03e6aa8c9 .menu-list > li.icon-top > a .ap-icon svg,
#a1db0a03e6aa8c9 .menu-list > li.icon-bottom > a .ap-icon img,
#a1db0a03e6aa8c9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1db0a03e6aa8c9 .menu-list > li.icon-right > a .ap-icon,
#a1db0a03e6aa8c9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1db0a03e6aa8c9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1db0a03e6aa8c9 .menu-list > li:hover > a,
#a1db0a03e6aa8c9 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a1db0a03e6aa8c9 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a1db0a03e6aa8c9 .menu-list ul,
#a1db0a03e6aa8c9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1db0a03e6aa8c9 .menu-list ul {
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
}
#a1db0a03e6aa8c9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1db0a03e6aa8c9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1db0a03e6aa8c9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a67afac8b4a60e6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a95b4a0506af197 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a23a2a9adfa5c0d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a3977a38d9ababf > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6ad3aad95a3029 a, #a6ad3aad95a3029 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a6ad3aad95a3029 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a3c91a13c4afd69 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afac0a4cc9afa1f .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#afac0a4cc9afa1f .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a9ef8a99fba4622 .uk-grid {
  margin-left: -15px;
}
#a9ef8a99fba4622 .uk-grid > * {
  padding-left: 15px;
}
#a9ef8a99fba4622 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9ef8a99fba4622 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a9ef8a99fba4622 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
}
#a9ef8a99fba4622 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a9ef8a99fba4622 .article .info p {
  margin: 10px 0 10px;
}
#a9ef8a99fba4622 .article svg {
  fill: currentColor;
}
#a9ef8a99fba4622 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a9ef8a99fba4622 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a9ef8a99fba4622 .article.list-icon .info {
  padding-left: 25px;
}
#a9ef8a99fba4622 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a9ef8a99fba4622 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a9ef8a99fba4622 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9ef8a99fba4622 .article:hover .title {
  color: #238bcd;
}
#a9ef8a99fba4622 .article:hover .datetime {
  color: #238bcd;
}
#a9ef8a99fba4622 .article:hover .category {
  color: #b6b6b6;
}
#a9ef8a99fba4622 .article:hover .abstract {
  color: #b6b6b6;
}
#a9ef8a99fba4622 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a9ef8a99fba4622 .article:hover .list_icon {
  color: #b6b6b6;
}
#a0a79a9114a6ffb .uk-grid {
  margin-left: -15px;
}
#a0a79a9114a6ffb .uk-grid > * {
  padding-left: 15px;
}
#a0a79a9114a6ffb .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a0a79a9114a6ffb .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a0a79a9114a6ffb .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
}
#a0a79a9114a6ffb .article .info {
  padding: 8px 10px;
  position: relative;
}
#a0a79a9114a6ffb .article .info p {
  margin: 10px 0 10px;
}
#a0a79a9114a6ffb .article svg {
  fill: currentColor;
}
#a0a79a9114a6ffb .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a0a79a9114a6ffb .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a0a79a9114a6ffb .article.list-icon .info {
  padding-left: 25px;
}
#a0a79a9114a6ffb .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a0a79a9114a6ffb .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a0a79a9114a6ffb .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a0a79a9114a6ffb .article:hover .title {
  color: #238bcd;
}
#a0a79a9114a6ffb .article:hover .datetime {
  color: #238bcd;
}
#a0a79a9114a6ffb .article:hover .category {
  color: #b6b6b6;
}
#a0a79a9114a6ffb .article:hover .abstract {
  color: #b6b6b6;
}
#a0a79a9114a6ffb .article:hover .btn_icon {
  color: #b6b6b6;
}
#a0a79a9114a6ffb .article:hover .list_icon {
  color: #b6b6b6;
}
#aea50ae026a080b .uk-grid {
  margin-left: -15px;
}
#aea50ae026a080b .uk-grid > * {
  padding-left: 15px;
}
#aea50ae026a080b .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aea50ae026a080b .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#aea50ae026a080b .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
}
#aea50ae026a080b .article .info {
  padding: 8px 10px;
  position: relative;
}
#aea50ae026a080b .article .info p {
  margin: 10px 0 10px;
}
#aea50ae026a080b .article svg {
  fill: currentColor;
}
#aea50ae026a080b .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#aea50ae026a080b .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#aea50ae026a080b .article.list-icon .info {
  padding-left: 25px;
}
#aea50ae026a080b .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#aea50ae026a080b .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#aea50ae026a080b .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#aea50ae026a080b .article:hover .title {
  color: #238bcd;
}
#aea50ae026a080b .article:hover .datetime {
  color: #238bcd;
}
#aea50ae026a080b .article:hover .category {
  color: #b6b6b6;
}
#aea50ae026a080b .article:hover .abstract {
  color: #b6b6b6;
}
#aea50ae026a080b .article:hover .btn_icon {
  color: #b6b6b6;
}
#aea50ae026a080b .article:hover .list_icon {
  color: #b6b6b6;
}
#a31edad72ba015d {
  overflow: hidden;
  pointer-events: none;
}
#a31edad72ba015d > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a31edad72ba015d > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a31edad72ba015d > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a31edad72ba015d > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a31edad72ba015d > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a31edad72ba015d > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav,
#a31edad72ba015d > .tab-nav,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav,
#a31edad72ba015d > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #f9f9f9;
  border-bottom-width: 1px;
  border-bottom-color: #f4f4f4;
  border-bottom-style: solid;
  border-right-color: #f4f4f4;
  border-left-color: #f4f4f4;
  border-top-color: #f4f4f4;
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav-horizontal,
#a31edad72ba015d > .tab-nav-horizontal,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a31edad72ba015d > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a31edad72ba015d > .tab-nav-horizontal::-webkit-scrollbar,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a31edad72ba015d > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a31edad72ba015d > .tab-nav-horizontal.tagScroll,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a31edad72ba015d > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a31edad72ba015d > .tab-nav-horizontal.tagScroll li a,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a31edad72ba015d > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav a,
#a31edad72ba015d > .tab-nav a,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a31edad72ba015d > .tab-tabs > .tab-nav a {
  padding: 0 10px;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav li a,
#a31edad72ba015d > .tab-nav li a,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a31edad72ba015d > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 40px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 20px;
  border-left-width: 0;
  border-left-style: none;
  border-left-color: #9b9b9b;
  border-right-color: #9b9b9b;
  border-bottom-color: #9b9b9b;
  border-top-color: #9b9b9b;
  border-right-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-bottom-style: none;
  border-top-style: none;
  padding: 0 10px;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav li a svg,
#a31edad72ba015d > .tab-nav li a svg,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a31edad72ba015d > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav li a .ap_icon,
#a31edad72ba015d > .tab-nav li a .ap_icon,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a31edad72ba015d > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav li a:hover,
#a31edad72ba015d > .tab-nav li a:hover,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a31edad72ba015d > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-style: none;
}
#a31edad72ba015d > .tab-wrap > div > .tab-nav li.uk-active a,
#a31edad72ba015d > .tab-nav li.uk-active a,
#a31edad72ba015d > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a31edad72ba015d > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-style: none;
}
#a31edad72ba015d .layout-left li,
#a31edad72ba015d .layout-center li,
#a31edad72ba015d .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a31edad72ba015d .layout-left li a,
#a31edad72ba015d .layout-center li a,
#a31edad72ba015d .layout-right li a {
  height: 100%;
}
#a31edad72ba015d > .tab-tabs .layout-left {
  text-align: left;
}
#a31edad72ba015d > .tab-tabs .layout-center {
  text-align: center;
}
#a31edad72ba015d > .tab-tabs .layout-right {
  text-align: right;
}
#a31edad72ba015d .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#a31edad72ba015d .tab-content-wrap {
  background-color: transparent;
}
#a31edad72ba015d .tab-contents,
#a31edad72ba015d .tab-contents-wrap {
  pointer-events: none;
}
#a31edad72ba015d .tab-content,
#a31edad72ba015d .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a31edad72ba015d .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a31edad72ba015d .tab-wrap .tab-contents {
  height: 100%;
}
#a31edad72ba015d .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a31edad72ba015d .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a31edad72ba015d .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae7baaca8aac139 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9914a9f7fa7dfd .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a9914a9f7fa7dfd .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a2e36a0009ac13c .uk-grid {
  margin-left: -15px;
}
#a2e36a0009ac13c .uk-grid > * {
  padding-left: 15px;
}
#a2e36a0009ac13c .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2e36a0009ac13c .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a2e36a0009ac13c .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a2e36a0009ac13c .article .info {
  padding: 8px 10px;
  position: relative;
}
#a2e36a0009ac13c .article .info p {
  margin: 10px 0 10px;
}
#a2e36a0009ac13c .article svg {
  fill: currentColor;
}
#a2e36a0009ac13c .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a2e36a0009ac13c .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a2e36a0009ac13c .article.list-icon .info {
  padding-left: 25px;
}
#a2e36a0009ac13c .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a2e36a0009ac13c .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a2e36a0009ac13c .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a2e36a0009ac13c .article:hover .title {
  color: #238bcd;
}
#a2e36a0009ac13c .article:hover .datetime {
  color: #238bcd;
}
#a2e36a0009ac13c .article:hover .category {
  color: #b6b6b6;
}
#a2e36a0009ac13c .article:hover .abstract {
  color: #b6b6b6;
}
#a2e36a0009ac13c .article:hover .btn_icon {
  color: #b6b6b6;
}
#a2e36a0009ac13c .article:hover .list_icon {
  color: #b6b6b6;
}
#a2e38a035aa6293 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4801adbc2a0297 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a4801adbc2a0297 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#ae46ea7d09a3d08 .uk-grid {
  margin-left: -15px;
}
#ae46ea7d09a3d08 .uk-grid > * {
  padding-left: 15px;
}
#ae46ea7d09a3d08 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae46ea7d09a3d08 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#ae46ea7d09a3d08 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ae46ea7d09a3d08 .article .info {
  padding: 8px 10px;
  position: relative;
}
#ae46ea7d09a3d08 .article .info p {
  margin: 10px 0 10px;
}
#ae46ea7d09a3d08 .article svg {
  fill: currentColor;
}
#ae46ea7d09a3d08 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#ae46ea7d09a3d08 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#ae46ea7d09a3d08 .article.list-icon .info {
  padding-left: 25px;
}
#ae46ea7d09a3d08 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#ae46ea7d09a3d08 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ae46ea7d09a3d08 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ae46ea7d09a3d08 .article:hover .title {
  color: #238bcd;
}
#ae46ea7d09a3d08 .article:hover .datetime {
  color: #238bcd;
}
#ae46ea7d09a3d08 .article:hover .category {
  color: #b6b6b6;
}
#ae46ea7d09a3d08 .article:hover .abstract {
  color: #b6b6b6;
}
#ae46ea7d09a3d08 .article:hover .btn_icon {
  color: #b6b6b6;
}
#ae46ea7d09a3d08 .article:hover .list_icon {
  color: #b6b6b6;
}
#adeebaf9c8a5b94 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a18a3a074bae775 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a18a3a074bae775 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#aadf5aada8af4ff .acabfa45e3a9d11 {
  overflow: hidden;
}
#aadf5aada8af4ff .acabfa45e3a9d11 , #aadf5aada8af4ff .acabfa45e3a9d11 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;}#aadf5aada8af4ff .aedeaa98aaa9acd a, #aadf5aada8af4ff .aedeaa98aaa9acd {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(155, 155, 155, 1);}#aadf5aada8af4ff .aa25ea1d9ea8fea , #aadf5aada8af4ff .aa25ea1d9ea8fea a{color: rgba(180, 180, 180, 1);}#aadf5aada8af4ff .uk-grid > .uk-grid-margin {
  margin-top: 8px;
}
#aadf5aada8af4ff .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #f2f2f2;
}
#aadf5aada8af4ff .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aadf5aada8af4ff .uk-position-center-left-out {
    left: -30px;
  }
  #aadf5aada8af4ff .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a3334a0cd8a2ece > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a132ea86c3a0117 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a132ea86c3a0117 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a04b0a2e96aed11 .uk-grid {
  margin-left: -15px;
}
#a04b0a2e96aed11 .uk-grid > * {
  padding-left: 15px;
}
#a04b0a2e96aed11 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a04b0a2e96aed11 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a04b0a2e96aed11 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a04b0a2e96aed11 .article .info {
  padding: 8px 10px;
  position: relative;
}
#a04b0a2e96aed11 .article .info p {
  margin: 10px 0 10px;
}
#a04b0a2e96aed11 .article svg {
  fill: currentColor;
}
#a04b0a2e96aed11 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a04b0a2e96aed11 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a04b0a2e96aed11 .article.list-icon .info {
  padding-left: 25px;
}
#a04b0a2e96aed11 .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#a04b0a2e96aed11 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a04b0a2e96aed11 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a04b0a2e96aed11 .article:hover .title {
  color: #238bcd;
}
#a04b0a2e96aed11 .article:hover .datetime {
  color: #238bcd;
}
#a04b0a2e96aed11 .article:hover .category {
  color: #b6b6b6;
}
#a04b0a2e96aed11 .article:hover .abstract {
  color: #b6b6b6;
}
#a04b0a2e96aed11 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a04b0a2e96aed11 .article:hover .list_icon {
  color: #b6b6b6;
}
#a251ca6403a674c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5ef8ab9ddab608 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a5ef8ab9ddab608 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#af6eca6e44ac2dd .uk-grid {
  margin-left: -15px;
}
#af6eca6e44ac2dd .uk-grid > * {
  padding-left: 15px;
}
#af6eca6e44ac2dd .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#af6eca6e44ac2dd .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#af6eca6e44ac2dd .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#af6eca6e44ac2dd .article .info {
  padding: 8px 10px;
  position: relative;
}
#af6eca6e44ac2dd .article .info p {
  margin: 10px 0 10px;
}
#af6eca6e44ac2dd .article svg {
  fill: currentColor;
}
#af6eca6e44ac2dd .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#af6eca6e44ac2dd .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#af6eca6e44ac2dd .article.list-icon .info {
  padding-left: 25px;
}
#af6eca6e44ac2dd .article .datetime {
  position: absolute;
  right: 10px;
  top: 8px;
}
#af6eca6e44ac2dd .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af6eca6e44ac2dd .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#af6eca6e44ac2dd .article:hover .title {
  color: #238bcd;
}
#af6eca6e44ac2dd .article:hover .datetime {
  color: #238bcd;
}
#af6eca6e44ac2dd .article:hover .category {
  color: #b6b6b6;
}
#af6eca6e44ac2dd .article:hover .abstract {
  color: #b6b6b6;
}
#af6eca6e44ac2dd .article:hover .btn_icon {
  color: #b6b6b6;
}
#af6eca6e44ac2dd .article:hover .list_icon {
  color: #b6b6b6;
}
#af067a3078a69b3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7b16a6c42abb4c > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#aff23a246caa73b > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a8a91a3df6aa5f9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8a91a3df6aa5f9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8a91a3df6aa5f9 .ap-icon {
  margin-right: 6px;
}
#a8a91a3df6aa5f9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a8a91a3df6aa5f9 .menu-list > li.icon-bottom > a,
#a8a91a3df6aa5f9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8a91a3df6aa5f9 .menu-list > li.icon-bottom > a .ap-icon,
#a8a91a3df6aa5f9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8a91a3df6aa5f9 .menu-list > li.icon-bottom > a .ap-icon svg,
#a8a91a3df6aa5f9 .menu-list > li.icon-top > a .ap-icon svg,
#a8a91a3df6aa5f9 .menu-list > li.icon-bottom > a .ap-icon img,
#a8a91a3df6aa5f9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8a91a3df6aa5f9 .menu-list > li.icon-right > a .ap-icon,
#a8a91a3df6aa5f9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8a91a3df6aa5f9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8a91a3df6aa5f9 .menu-list > li:hover > a,
#a8a91a3df6aa5f9 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8a91a3df6aa5f9 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8a91a3df6aa5f9 .menu-list ul,
#a8a91a3df6aa5f9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8a91a3df6aa5f9 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a8a91a3df6aa5f9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8a91a3df6aa5f9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8a91a3df6aa5f9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ace7fa29d9a09a4 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ace7fa29d9a09a4 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ace7fa29d9a09a4 .ap-icon {
  margin-right: 6px;
}
#ace7fa29d9a09a4 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ace7fa29d9a09a4 .menu-list > li.icon-bottom > a,
#ace7fa29d9a09a4 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ace7fa29d9a09a4 .menu-list > li.icon-bottom > a .ap-icon,
#ace7fa29d9a09a4 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ace7fa29d9a09a4 .menu-list > li.icon-bottom > a .ap-icon svg,
#ace7fa29d9a09a4 .menu-list > li.icon-top > a .ap-icon svg,
#ace7fa29d9a09a4 .menu-list > li.icon-bottom > a .ap-icon img,
#ace7fa29d9a09a4 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ace7fa29d9a09a4 .menu-list > li.icon-right > a .ap-icon,
#ace7fa29d9a09a4 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ace7fa29d9a09a4 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ace7fa29d9a09a4 .menu-list > li:hover > a,
#ace7fa29d9a09a4 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ace7fa29d9a09a4 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ace7fa29d9a09a4 .menu-list ul,
#ace7fa29d9a09a4 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ace7fa29d9a09a4 .menu-list ul {
  top: 146px;
  left: 50%;
  transform: translateX(-50%);
}
#ace7fa29d9a09a4 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ace7fa29d9a09a4 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ace7fa29d9a09a4 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a22cca00f9a5d67 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a22cca00f9a5d67 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a22cca00f9a5d67 .ap-icon {
  margin-right: 6px;
}
#a22cca00f9a5d67 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 150px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a22cca00f9a5d67 .menu-list > li.icon-bottom > a,
#a22cca00f9a5d67 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a22cca00f9a5d67 .menu-list > li.icon-bottom > a .ap-icon,
#a22cca00f9a5d67 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a22cca00f9a5d67 .menu-list > li.icon-bottom > a .ap-icon svg,
#a22cca00f9a5d67 .menu-list > li.icon-top > a .ap-icon svg,
#a22cca00f9a5d67 .menu-list > li.icon-bottom > a .ap-icon img,
#a22cca00f9a5d67 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a22cca00f9a5d67 .menu-list > li.icon-right > a .ap-icon,
#a22cca00f9a5d67 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a22cca00f9a5d67 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a22cca00f9a5d67 .menu-list > li:hover > a,
#a22cca00f9a5d67 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a22cca00f9a5d67 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a22cca00f9a5d67 .menu-list ul,
#a22cca00f9a5d67 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a22cca00f9a5d67 .menu-list ul {
  top: 183px;
  left: 50%;
  transform: translateX(-50%);
}
#a22cca00f9a5d67 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a22cca00f9a5d67 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a22cca00f9a5d67 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a5979ab33badcf4 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5979ab33badcf4 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5979ab33badcf4 .ap-icon {
  margin-right: 6px;
}
#a5979ab33badcf4 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a5979ab33badcf4 .menu-list > li.icon-bottom > a,
#a5979ab33badcf4 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5979ab33badcf4 .menu-list > li.icon-bottom > a .ap-icon,
#a5979ab33badcf4 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5979ab33badcf4 .menu-list > li.icon-bottom > a .ap-icon svg,
#a5979ab33badcf4 .menu-list > li.icon-top > a .ap-icon svg,
#a5979ab33badcf4 .menu-list > li.icon-bottom > a .ap-icon img,
#a5979ab33badcf4 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5979ab33badcf4 .menu-list > li.icon-right > a .ap-icon,
#a5979ab33badcf4 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5979ab33badcf4 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5979ab33badcf4 .menu-list > li:hover > a,
#a5979ab33badcf4 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5979ab33badcf4 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a5979ab33badcf4 .menu-list ul,
#a5979ab33badcf4 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5979ab33badcf4 .menu-list ul {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
#a5979ab33badcf4 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5979ab33badcf4 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5979ab33badcf4 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aa798a0a39a46b3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a11b4ac404afdd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a11b4ac404afdd3 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a11b4ac404afdd3 .ap-icon {
  margin-right: 6px;
}
#a11b4ac404afdd3 .indicator {
  margin-left: 4px;
}
#a11b4ac404afdd3 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a11b4ac404afdd3 .menu-list li:hover > a,
#a11b4ac404afdd3 .menu-list li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list li.active > a {
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list ul,
#a11b4ac404afdd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a11b4ac404afdd3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a11b4ac404afdd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11b4ac404afdd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11b4ac404afdd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0826a72c8aaa71 > .ele-wrap {background-color: rgba(0, 0, 0, 0);background-image: url(/resources/upload/ac8a5af7bba765c/1682056650711.jpeg);background-size: cover;background-repeat: no-repeat;background-position: top center;}#a8903a06d6ab6ac > .ele-wrap {background-color: rgba(138, 0, 0, 1);}#a32c5afd32a5b9b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae1ffab5dda8807 .img-wrap {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a75cda5aeaa228c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a36dea8ca3ab90b .img-wrap {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a3984addddab7b0 > .ele-wrap {background-image: url(/resources/upload/ac8a5af7bba765c/1642560732224.jpeg);background-size: cover;background-position: center center;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad448ab2fbae805 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af08ca3c9ba1187 .ele-slideshow .uk-dotnav > .uk-active a {
  background: #d0021b;
}
#af08ca3c9ba1187 .ele-slideshow .uk-slidenav {
  color: #d0021b;
}
#a2857a22eaaf0f6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a06e6a4a6fac021 .uk-grid {
  margin-left: -15px;
}
#a06e6a4a6fac021 .uk-grid > * {
  padding-left: 15px;
}
#a06e6a4a6fac021 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a06e6a4a6fac021 .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a06e6a4a6fac021 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a06e6a4a6fac021 .article .info {
  padding: 5px 10px;
  position: relative;
}
#a06e6a4a6fac021 .article .info p {
  margin: 10px 0 10px;
}
#a06e6a4a6fac021 .article svg {
  fill: currentColor;
}
#a06e6a4a6fac021 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 5px;
  width: 20px;
  color: #b4b4b4;
}
#a06e6a4a6fac021 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 5px;
  color: #b4b4b4;
}
#a06e6a4a6fac021 .article.list-icon .info {
  padding-left: 25px;
}
#a06e6a4a6fac021 .article .datetime {
  position: absolute;
  right: 10px;
  top: 5px;
}
#a06e6a4a6fac021 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a06e6a4a6fac021 .article:hover .title {
  color: #d0021b;
}
#a06e6a4a6fac021 .article:hover .datetime {
  color: #d0021b;
}
#a06e6a4a6fac021 .article:hover .category {
  color: #b6b6b6;
}
#a06e6a4a6fac021 .article:hover .abstract {
  color: #b6b6b6;
}
#a06e6a4a6fac021 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a06e6a4a6fac021 .article:hover .list_icon {
  color: #b6b6b6;
}
#a85a6a5314aa3c5 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a85a6a5314aa3c5 .uk-position-center-left-out {
    left: -30px;
  }
  #a85a6a5314aa3c5 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae596afe74a9344 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#abaf9a6bdeabf34 .aee90a4df6a15b1 {
  overflow: hidden;
}
#abaf9a6bdeabf34 .aee90a4df6a15b1 , #abaf9a6bdeabf34 .aee90a4df6a15b1 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;text-align: center;font-family: inherit;}#abaf9a6bdeabf34 .uk-grid {
  margin-left: -15px;
}
#abaf9a6bdeabf34 .uk-grid > * {
  padding-left: 15px;
}
#abaf9a6bdeabf34 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#abaf9a6bdeabf34 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abaf9a6bdeabf34 .uk-position-center-left-out {
    left: -30px;
  }
  #abaf9a6bdeabf34 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2ec2af39ba2b5a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a646ea170bab2e9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a1b32a3f81a8064 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afe78ab39fa5e6c a, #afe78ab39fa5e6c {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#afe78ab39fa5e6c a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#ae617a522ea2179 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4f5aa5bb4a278e .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a4f5aa5bb4a278e .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#ab72da90e7a9aca .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#ab72da90e7a9aca .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#ad9ddadc95a8ed3 .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#ad9ddadc95a8ed3 .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#a7cf6a2678a130b .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a7cf6a2678a130b .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#a8051ae715a4dcb .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a8051ae715a4dcb .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#adb0da8cb8a71d0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad3c1ae2e4aa9ad > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a052ca89f6a3de8 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a5c1ea0014a322a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5c1ea0014a322a .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5c1ea0014a322a .ap-icon {
  margin-right: 6px;
}
#a5c1ea0014a322a .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a5c1ea0014a322a .menu-list > li.icon-bottom > a,
#a5c1ea0014a322a .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5c1ea0014a322a .menu-list > li.icon-bottom > a .ap-icon,
#a5c1ea0014a322a .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5c1ea0014a322a .menu-list > li.icon-bottom > a .ap-icon svg,
#a5c1ea0014a322a .menu-list > li.icon-top > a .ap-icon svg,
#a5c1ea0014a322a .menu-list > li.icon-bottom > a .ap-icon img,
#a5c1ea0014a322a .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5c1ea0014a322a .menu-list > li.icon-right > a .ap-icon,
#a5c1ea0014a322a .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5c1ea0014a322a .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5c1ea0014a322a .menu-list > li:hover > a,
#a5c1ea0014a322a .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5c1ea0014a322a .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5c1ea0014a322a .menu-list ul,
#a5c1ea0014a322a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5c1ea0014a322a .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a5c1ea0014a322a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5c1ea0014a322a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5c1ea0014a322a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab829a59b5a295e .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab829a59b5a295e .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab829a59b5a295e .ap-icon {
  margin-right: 6px;
}
#ab829a59b5a295e .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#ab829a59b5a295e .menu-list > li.icon-bottom > a,
#ab829a59b5a295e .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab829a59b5a295e .menu-list > li.icon-bottom > a .ap-icon,
#ab829a59b5a295e .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab829a59b5a295e .menu-list > li.icon-bottom > a .ap-icon svg,
#ab829a59b5a295e .menu-list > li.icon-top > a .ap-icon svg,
#ab829a59b5a295e .menu-list > li.icon-bottom > a .ap-icon img,
#ab829a59b5a295e .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab829a59b5a295e .menu-list > li.icon-right > a .ap-icon,
#ab829a59b5a295e .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab829a59b5a295e .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab829a59b5a295e .menu-list > li:hover > a,
#ab829a59b5a295e .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab829a59b5a295e .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ab829a59b5a295e .menu-list ul,
#ab829a59b5a295e .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab829a59b5a295e .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#ab829a59b5a295e .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab829a59b5a295e .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab829a59b5a295e .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a9080ab953a6364 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a9080ab953a6364 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a9080ab953a6364 .ap-icon {
  margin-right: 6px;
}
#a9080ab953a6364 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a9080ab953a6364 .menu-list > li.icon-bottom > a,
#a9080ab953a6364 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a9080ab953a6364 .menu-list > li.icon-bottom > a .ap-icon,
#a9080ab953a6364 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a9080ab953a6364 .menu-list > li.icon-bottom > a .ap-icon svg,
#a9080ab953a6364 .menu-list > li.icon-top > a .ap-icon svg,
#a9080ab953a6364 .menu-list > li.icon-bottom > a .ap-icon img,
#a9080ab953a6364 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a9080ab953a6364 .menu-list > li.icon-right > a .ap-icon,
#a9080ab953a6364 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a9080ab953a6364 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a9080ab953a6364 .menu-list > li:hover > a,
#a9080ab953a6364 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a9080ab953a6364 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a9080ab953a6364 .menu-list ul,
#a9080ab953a6364 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a9080ab953a6364 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a9080ab953a6364 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a9080ab953a6364 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a9080ab953a6364 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a9ffdaf175a46b6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a9ffdaf175a46b6 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a9ffdaf175a46b6 .ap-icon {
  margin-right: 6px;
}
#a9ffdaf175a46b6 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a9ffdaf175a46b6 .menu-list > li.icon-bottom > a,
#a9ffdaf175a46b6 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a9ffdaf175a46b6 .menu-list > li.icon-bottom > a .ap-icon,
#a9ffdaf175a46b6 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a9ffdaf175a46b6 .menu-list > li.icon-bottom > a .ap-icon svg,
#a9ffdaf175a46b6 .menu-list > li.icon-top > a .ap-icon svg,
#a9ffdaf175a46b6 .menu-list > li.icon-bottom > a .ap-icon img,
#a9ffdaf175a46b6 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a9ffdaf175a46b6 .menu-list > li.icon-right > a .ap-icon,
#a9ffdaf175a46b6 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a9ffdaf175a46b6 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a9ffdaf175a46b6 .menu-list > li:hover > a,
#a9ffdaf175a46b6 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a9ffdaf175a46b6 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a9ffdaf175a46b6 .menu-list ul,
#a9ffdaf175a46b6 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a9ffdaf175a46b6 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a9ffdaf175a46b6 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a9ffdaf175a46b6 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a9ffdaf175a46b6 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af1e7a85ffa3eec .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af1e7a85ffa3eec .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af1e7a85ffa3eec .ap-icon {
  margin-right: 6px;
}
#af1e7a85ffa3eec .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#af1e7a85ffa3eec .menu-list > li.icon-bottom > a,
#af1e7a85ffa3eec .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af1e7a85ffa3eec .menu-list > li.icon-bottom > a .ap-icon,
#af1e7a85ffa3eec .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af1e7a85ffa3eec .menu-list > li.icon-bottom > a .ap-icon svg,
#af1e7a85ffa3eec .menu-list > li.icon-top > a .ap-icon svg,
#af1e7a85ffa3eec .menu-list > li.icon-bottom > a .ap-icon img,
#af1e7a85ffa3eec .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af1e7a85ffa3eec .menu-list > li.icon-right > a .ap-icon,
#af1e7a85ffa3eec .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af1e7a85ffa3eec .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af1e7a85ffa3eec .menu-list > li:hover > a,
#af1e7a85ffa3eec .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af1e7a85ffa3eec .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af1e7a85ffa3eec .menu-list ul,
#af1e7a85ffa3eec .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af1e7a85ffa3eec .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#af1e7a85ffa3eec .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af1e7a85ffa3eec .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af1e7a85ffa3eec .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a16a4ad00fa1c44 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3cbfab245a956c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7c55a6fc8a5b73 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(35, 139, 205, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a7c55a6fc8a5b73 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(35, 139, 205, 1);}#a7f08a29dda64f6 .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a7f08a29dda64f6 .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#a10d2aea20ad85a .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a10d2aea20ad85a .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#a3acba1014a4642 .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a3acba1014a4642 .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#a35a4a185fac3dc .ele-wrap {border-color: rgba(238, 238, 238, 1);color: #4a4a4a;font-size: 15px;font-weight: 500;background-color: rgba(249, 249, 249, 1);border-radius: 0px;justify-content: center;border-style: solid;border-width: 1px;}#a35a4a185fac3dc .ele-wrap:hover {background-color: #0483cc;color: #238bcd;background-color: rgba(0, 0, 0, 0);}#a00e0a2811afa60 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a1aaca7466a5880 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a4e2fa2c07aa685 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5a11a48c3a9eeb a, #a5a11a48c3a9eeb {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a5a11a48c3a9eeb a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a9265a6a77a5009 .a488da52e4a5443 {
  overflow: hidden;
}
#a9265a6a77a5009 .a488da52e4a5443 , #a9265a6a77a5009 .a488da52e4a5443 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(51, 51, 51, 1);}#a9265a6a77a5009 .a488da52e4a5443:hover , #a9265a6a77a5009 .a488da52e4a5443 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(35, 139, 205, 1);}#a9265a6a77a5009 .a3dd8ae2a8adec3 {
  overflow: hidden;
}
#a9265a6a77a5009 .a3dd8ae2a8adec3 , #a9265a6a77a5009 .a3dd8ae2a8adec3 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(155, 155, 155, 1);}#a9265a6a77a5009 .dynamic-list-item {
  border-bottom-style: solid;
  border-bottom-color: #dddddd;
  border-bottom-width: 1px;
}
#a9265a6a77a5009 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a9265a6a77a5009 .uk-position-center-left-out {
    left: -30px;
  }
  #a9265a6a77a5009 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a4198af738a1460 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a69c3abac5a048c > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a8b8bab39ea26e2 a, #a8b8bab39ea26e2 {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(255, 255, 255, 1);}#aae1ba4468a033d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#af3afae624a6f8e .uk-grid {
  margin-left: -15px;
}
#af3afae624a6f8e .uk-grid > * {
  padding-left: 15px;
}
#af3afae624a6f8e .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#af3afae624a6f8e .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#af3afae624a6f8e .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#af3afae624a6f8e .article .info {
  padding: 10px 10px;
  position: relative;
}
#af3afae624a6f8e .article .info p {
  margin: 10px 0 10px;
}
#af3afae624a6f8e .article svg {
  fill: currentColor;
}
#af3afae624a6f8e .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#af3afae624a6f8e .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#af3afae624a6f8e .article.list-icon .info {
  padding-left: 25px;
}
#af3afae624a6f8e .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#af3afae624a6f8e .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af3afae624a6f8e .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#af3afae624a6f8e .article:hover .title {
  color: #238bcd;
}
#af3afae624a6f8e .article:hover .datetime {
  color: #b6b6b6;
}
#af3afae624a6f8e .article:hover .category {
  color: #b6b6b6;
}
#af3afae624a6f8e .article:hover .abstract {
  color: #b6b6b6;
}
#af3afae624a6f8e .article:hover .btn_icon {
  color: #b6b6b6;
}
#af3afae624a6f8e .article:hover .list_icon {
  color: #b6b6b6;
}
#a4ad1a0b0ca994f .uk-grid {
  margin-left: -15px;
}
#a4ad1a0b0ca994f .uk-grid > * {
  padding-left: 15px;
}
#a4ad1a0b0ca994f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a4ad1a0b0ca994f .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a4ad1a0b0ca994f .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a4ad1a0b0ca994f .article .info {
  padding: 10px 10px;
  position: relative;
}
#a4ad1a0b0ca994f .article .info p {
  margin: 10px 0 10px;
}
#a4ad1a0b0ca994f .article svg {
  fill: currentColor;
}
#a4ad1a0b0ca994f .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 20px;
  color: #b4b4b4;
}
#a4ad1a0b0ca994f .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 10px;
  color: #b4b4b4;
}
#a4ad1a0b0ca994f .article.list-icon .info {
  padding-left: 25px;
}
#a4ad1a0b0ca994f .article .datetime {
  position: absolute;
  right: 10px;
  top: 10px;
}
#a4ad1a0b0ca994f .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a4ad1a0b0ca994f .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a4ad1a0b0ca994f .article:hover .title {
  color: #238bcd;
}
#a4ad1a0b0ca994f .article:hover .datetime {
  color: #b6b6b6;
}
#a4ad1a0b0ca994f .article:hover .category {
  color: #b6b6b6;
}
#a4ad1a0b0ca994f .article:hover .abstract {
  color: #b6b6b6;
}
#a4ad1a0b0ca994f .article:hover .btn_icon {
  color: #b6b6b6;
}
#a4ad1a0b0ca994f .article:hover .list_icon {
  color: #b6b6b6;
}
#a4f3ba5c8fa89be {
  overflow: hidden;
  pointer-events: none;
}
#a4f3ba5c8fa89be > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a4f3ba5c8fa89be > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a4f3ba5c8fa89be > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a4f3ba5c8fa89be > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a4f3ba5c8fa89be > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a4f3ba5c8fa89be > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav,
#a4f3ba5c8fa89be > .tab-nav,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 1px;
  border-bottom-color: #238bcd;
  border-bottom-style: solid;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav-horizontal,
#a4f3ba5c8fa89be > .tab-nav-horizontal,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a4f3ba5c8fa89be > .tab-nav-horizontal::-webkit-scrollbar,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a4f3ba5c8fa89be > .tab-nav-horizontal.tagScroll,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a4f3ba5c8fa89be > .tab-nav-horizontal.tagScroll li a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav a,
#a4f3ba5c8fa89be > .tab-nav a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav a {
  padding: 0 25px;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav li a,
#a4f3ba5c8fa89be > .tab-nav li a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 10px;
  margin-left: 0;
  padding: 0 25px;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav li a svg,
#a4f3ba5c8fa89be > .tab-nav li a svg,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav li a .ap_icon,
#a4f3ba5c8fa89be > .tab-nav li a .ap_icon,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav li a:hover,
#a4f3ba5c8fa89be > .tab-nav li a:hover,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a90e2;
  border-bottom-width: 2px;
  border-bottom-style: none;
}
#a4f3ba5c8fa89be > .tab-wrap > div > .tab-nav li.uk-active a,
#a4f3ba5c8fa89be > .tab-nav li.uk-active a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a4f3ba5c8fa89be > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
  background-color: #238bcd;
}
#a4f3ba5c8fa89be .layout-left li,
#a4f3ba5c8fa89be .layout-center li,
#a4f3ba5c8fa89be .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a4f3ba5c8fa89be .layout-left li a,
#a4f3ba5c8fa89be .layout-center li a,
#a4f3ba5c8fa89be .layout-right li a {
  height: 100%;
}
#a4f3ba5c8fa89be > .tab-tabs .layout-left {
  text-align: left;
}
#a4f3ba5c8fa89be > .tab-tabs .layout-center {
  text-align: center;
}
#a4f3ba5c8fa89be > .tab-tabs .layout-right {
  text-align: right;
}
#a4f3ba5c8fa89be .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a4f3ba5c8fa89be .tab-content-wrap {
  background-color: #ffffff;
}
#a4f3ba5c8fa89be .tab-contents,
#a4f3ba5c8fa89be .tab-contents-wrap {
  pointer-events: none;
}
#a4f3ba5c8fa89be .tab-content,
#a4f3ba5c8fa89be .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a4f3ba5c8fa89be .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a4f3ba5c8fa89be .tab-wrap .tab-contents {
  height: 100%;
}
#a4f3ba5c8fa89be .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a4f3ba5c8fa89be .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a4f3ba5c8fa89be .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ab969a146aa1774 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(238, 238, 238, 1);border-right-color: rgba(238, 238, 238, 1);border-left-color: rgba(238, 238, 238, 1);border-bottom-color: rgba(238, 238, 238, 1);}#a422aa3576ae9f9 > .ele-wrap {background-color: rgba(244, 244, 244, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac3dbaff39a25f1 .ele-wrap {border-color: #000;color: #0d71be;font-size: 16px;font-weight: 500;border-radius: 5px;justify-content: flex-start;border-style: none;}#ac3dbaff39a25f1 .ele-wrap:hover {background-color: #0483cc;color: #d0021b;background-color: rgba(0, 0, 0, 0);}#a732ea2df3affde .title {
  font-size: 16px;
}
#a3132ae47aad782 {background-color: rgba(0,0,0,0.7);}#a3132ae47aad782 > .lightbox-content {background-color: rgba(0, 0, 0, 0);border-top-left-radius: 0px;border-bottom-right-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;}#aae70af80ca59a2 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aae70af80ca59a2 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aae70af80ca59a2 .ap-icon {
  margin-right: 6px;
}
#aae70af80ca59a2 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #f9f9f9;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #d8d6d6;
  border-top-style: solid;
  border-right-color: #d8d6d6;
  border-left-color: #d8d6d6;
  border-bottom-color: #d8d6d6;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 130px;
  height: 35px;
  background-color: #f9f9f9;
}
#aae70af80ca59a2 .menu-list > li.icon-bottom > a,
#aae70af80ca59a2 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aae70af80ca59a2 .menu-list > li.icon-bottom > a .ap-icon,
#aae70af80ca59a2 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aae70af80ca59a2 .menu-list > li.icon-bottom > a .ap-icon svg,
#aae70af80ca59a2 .menu-list > li.icon-top > a .ap-icon svg,
#aae70af80ca59a2 .menu-list > li.icon-bottom > a .ap-icon img,
#aae70af80ca59a2 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aae70af80ca59a2 .menu-list > li.icon-right > a .ap-icon,
#aae70af80ca59a2 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aae70af80ca59a2 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aae70af80ca59a2 .menu-list > li:hover > a,
#aae70af80ca59a2 .menu-list > li.active > a {
  background: #238bcd;
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #238bcd;
  border-top-style: solid;
  border-right-color: #238bcd;
  border-left-color: #238bcd;
  border-bottom-color: #238bcd;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#aae70af80ca59a2 .menu-list > li.active > a {
  background-color: #238bcd;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #238bcd;
  border-right-color: #238bcd;
  border-left-color: #238bcd;
  border-bottom-color: #238bcd;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#aae70af80ca59a2 .menu-list ul,
#aae70af80ca59a2 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aae70af80ca59a2 .menu-list ul {
  top: 188px;
  left: 50%;
  transform: translateX(-50%);
}
#aae70af80ca59a2 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aae70af80ca59a2 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aae70af80ca59a2 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4816a114fadde4 {background-color: rgba(0,0,0,0.7);}#a4816a114fadde4 > .lightbox-content {
                background-image: linear-gradient(180deg,
                transparent,
                );
            border-top-left-radius: 0px;border-bottom-right-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;}#a2c9ba13e6a9fb9 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a2c9ba13e6a9fb9 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a2c9ba13e6a9fb9 .ap-icon {
  margin-right: 6px;
}
#a2c9ba13e6a9fb9 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: #f9f9f9;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: center;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #d8d6d6;
  border-top-style: solid;
  border-right-color: #d8d6d6;
  border-left-color: #d8d6d6;
  border-bottom-color: #d8d6d6;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 166px;
  height: 45px;
  background-color: #f9f9f9;
}
#a2c9ba13e6a9fb9 .menu-list > li.icon-bottom > a,
#a2c9ba13e6a9fb9 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a2c9ba13e6a9fb9 .menu-list > li.icon-bottom > a .ap-icon,
#a2c9ba13e6a9fb9 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a2c9ba13e6a9fb9 .menu-list > li.icon-bottom > a .ap-icon svg,
#a2c9ba13e6a9fb9 .menu-list > li.icon-top > a .ap-icon svg,
#a2c9ba13e6a9fb9 .menu-list > li.icon-bottom > a .ap-icon img,
#a2c9ba13e6a9fb9 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a2c9ba13e6a9fb9 .menu-list > li.icon-right > a .ap-icon,
#a2c9ba13e6a9fb9 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a2c9ba13e6a9fb9 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a2c9ba13e6a9fb9 .menu-list > li:hover > a,
#a2c9ba13e6a9fb9 .menu-list > li.active > a {
  background: #4285f4;
  background-color: #4285f4;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 1px;
  border-top-color: #4285f4;
  border-top-style: solid;
  border-right-color: #4285f4;
  border-left-color: #4285f4;
  border-bottom-color: #4285f4;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a2c9ba13e6a9fb9 .menu-list > li.active > a {
  background-color: #4285f4;
  border-top-width: 1px;
  border-top-color: #4285f4;
  border-right-color: #4285f4;
  border-left-color: #4285f4;
  border-bottom-color: #4285f4;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a2c9ba13e6a9fb9 .menu-list ul,
#a2c9ba13e6a9fb9 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a2c9ba13e6a9fb9 .menu-list ul {
  top: 283px;
  left: 50%;
  transform: translateX(-50%);
}
#a2c9ba13e6a9fb9 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a2c9ba13e6a9fb9 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a2c9ba13e6a9fb9 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a5cbfa0467a8d34 {background-color: rgba(0,0,0,0.7);}#a5cbfa0467a8d34 > .lightbox-content {border-top-left-radius: 0px;border-bottom-right-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;}#a11b4ac404afdd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a11b4ac404afdd3 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a11b4ac404afdd3 .ap-icon {
  margin-right: 6px;
}
#a11b4ac404afdd3 .indicator {
  margin-left: 4px;
}
#a11b4ac404afdd3 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a11b4ac404afdd3 .menu-list li:hover > a,
#a11b4ac404afdd3 .menu-list li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list li.active > a {
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list ul,
#a11b4ac404afdd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a11b4ac404afdd3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a11b4ac404afdd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11b4ac404afdd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11b4ac404afdd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0826a72c8aaa71 > .ele-wrap {background-color: rgba(0, 0, 0, 0);background-image: url(/resources/upload/ac8a5af7bba765c/1682056650711.jpeg);background-size: cover;background-repeat: no-repeat;background-position: top center;}#a8903a06d6ab6ac > .ele-wrap {background-color: rgba(138, 0, 0, 1);}#afa3fa8023ab989 > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(0, 0, 0, 1);}#af132a7c79aa8c6 , #af132a7c79aa8c6 a{color: rgba(138, 0, 0, 1);}#aed8fa56abaeaf0 a, #aed8fa56abaeaf0 {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;color: rgba(138, 0, 0, 1);}#aed8fa56abaeaf0 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(138, 0, 0, 1);}#abeeaa53f5a55c2 > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afe0aa10faa7c66 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#afe0aa10faa7c66  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a11b4ac404afdd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a11b4ac404afdd3 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a11b4ac404afdd3 .ap-icon {
  margin-right: 6px;
}
#a11b4ac404afdd3 .indicator {
  margin-left: 4px;
}
#a11b4ac404afdd3 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a11b4ac404afdd3 .menu-list li:hover > a,
#a11b4ac404afdd3 .menu-list li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list li.active > a {
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list ul,
#a11b4ac404afdd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a11b4ac404afdd3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a11b4ac404afdd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11b4ac404afdd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11b4ac404afdd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0826a72c8aaa71 > .ele-wrap {background-color: rgba(0, 0, 0, 0);background-image: url(/resources/upload/ac8a5af7bba765c/1682056650711.jpeg);background-size: cover;background-repeat: no-repeat;background-position: top center;}#a8903a06d6ab6ac > .ele-wrap {background-color: rgba(138, 0, 0, 1);}#ae860aace9ab70a > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(0, 0, 0, 1);}#a317da0ed6a5b8e , #a317da0ed6a5b8e a{color: rgba(138, 0, 0, 1);}#a3e44a7310a98b8 a, #a3e44a7310a98b8 {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;color: rgba(138, 0, 0, 1);}#a3e44a7310a98b8 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(138, 0, 0, 1);}#a738ca5e91ae76a > .ele-wrap {background-color: rgba(255, 255, 255, 0.5);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae5faaaaa8ac876 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a7c5bae0f8ae829 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a9a2ca9f27a1ce2 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaa4ba9320ab50a a, #aaa4ba9320ab50a {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#aaa4ba9320ab50a a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#afee9afdf2a162b > .ele-wrap {background-size: cover;background-repeat: no-repeat;border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2ff7a521ca6a83 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9b58a8836a7669 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a699fa14e8ae7dd > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a3cdea54d7a362b > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aa64aa5138a6c2b .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#aa64aa5138a6c2b .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#aa64aa5138a6c2b .ap-icon {
  margin-right: 6px;
}
#aa64aa5138a6c2b .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#aa64aa5138a6c2b .menu-list > li.icon-bottom > a,
#aa64aa5138a6c2b .menu-list > li.icon-top > a {
  flex-direction: column;
}
#aa64aa5138a6c2b .menu-list > li.icon-bottom > a .ap-icon,
#aa64aa5138a6c2b .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#aa64aa5138a6c2b .menu-list > li.icon-bottom > a .ap-icon svg,
#aa64aa5138a6c2b .menu-list > li.icon-top > a .ap-icon svg,
#aa64aa5138a6c2b .menu-list > li.icon-bottom > a .ap-icon img,
#aa64aa5138a6c2b .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#aa64aa5138a6c2b .menu-list > li.icon-right > a .ap-icon,
#aa64aa5138a6c2b .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#aa64aa5138a6c2b .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#aa64aa5138a6c2b .menu-list > li:hover > a,
#aa64aa5138a6c2b .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa64aa5138a6c2b .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#aa64aa5138a6c2b .menu-list ul,
#aa64aa5138a6c2b .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#aa64aa5138a6c2b .menu-list ul {
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
}
#aa64aa5138a6c2b .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aa64aa5138a6c2b .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aa64aa5138a6c2b .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a11b4ac404afdd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a11b4ac404afdd3 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a11b4ac404afdd3 .ap-icon {
  margin-right: 6px;
}
#a11b4ac404afdd3 .indicator {
  margin-left: 4px;
}
#a11b4ac404afdd3 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a11b4ac404afdd3 .menu-list li:hover > a,
#a11b4ac404afdd3 .menu-list li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list li.active > a {
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list ul,
#a11b4ac404afdd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a11b4ac404afdd3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a11b4ac404afdd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11b4ac404afdd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11b4ac404afdd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0826a72c8aaa71 > .ele-wrap {background-color: rgba(0, 0, 0, 0);background-image: url(/resources/upload/ac8a5af7bba765c/1682056650711.jpeg);background-size: cover;background-repeat: no-repeat;background-position: top center;}#a8903a06d6ab6ac > .ele-wrap {background-color: rgba(138, 0, 0, 1);}#a149da5e27ae84a > .ele-wrap {border-bottom-width: 1px;border-right-style: none;border-left-style: none;border-bottom-style: solid;border-top-style: none;border-bottom-color: rgba(0, 0, 0, 1);}#a6254a8c38a60b9 , #a6254a8c38a60b9 a{color: rgba(138, 0, 0, 1);}#a0f20abb12af258 a, #a0f20abb12af258 {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;color: rgba(138, 0, 0, 1);}#a0f20abb12af258 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(138, 0, 0, 1);}#a11b4ac404afdd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a11b4ac404afdd3 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a11b4ac404afdd3 .ap-icon {
  margin-right: 6px;
}
#a11b4ac404afdd3 .indicator {
  margin-left: 4px;
}
#a11b4ac404afdd3 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
}
#a11b4ac404afdd3 .menu-list li:hover > a,
#a11b4ac404afdd3 .menu-list li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list li.active > a {
  border-bottom-width: 3px;
  border-bottom-color: #ffa500;
  border-bottom-style: solid;
}
#a11b4ac404afdd3 .menu-list ul,
#a11b4ac404afdd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a11b4ac404afdd3 .menu-list ul {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
#a11b4ac404afdd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a11b4ac404afdd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a11b4ac404afdd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0826a72c8aaa71 > .ele-wrap {background-color: rgba(0, 0, 0, 0);background-image: url(/resources/upload/ac8a5af7bba765c/1682056650711.jpeg);background-size: cover;background-repeat: no-repeat;background-position: top center;}#a8903a06d6ab6ac > .ele-wrap {background-color: rgba(138, 0, 0, 1);}#ad181af2fca6040 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae6cea46baa8d00 .img-wrap {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#aba03a78daa5920 > .ele-wrap {background-image: url(/resources/upload/ac8a5af7bba765c/1642472396224.jpeg);background-size: cover;background-position: center center;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0beba0bd1ac92c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a413daa898a631d .uk-grid {
  margin-left: -15px;
}
#a413daa898a631d .uk-grid > * {
  padding-left: 15px;
}
#a413daa898a631d .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a413daa898a631d .ap-category-filter ul li.active {
  border-color: #238bcd;
  color: #238bcd;
}
#a413daa898a631d .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a413daa898a631d .article .info {
  padding: 5px 10px;
  position: relative;
}
#a413daa898a631d .article .info p {
  margin: 10px 0 10px;
}
#a413daa898a631d .article svg {
  fill: currentColor;
}
#a413daa898a631d .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 5px;
  width: 20px;
  color: #b4b4b4;
}
#a413daa898a631d .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 5px;
  color: #b4b4b4;
}
#a413daa898a631d .article.list-icon .info {
  padding-left: 25px;
}
#a413daa898a631d .article .datetime {
  position: absolute;
  right: 10px;
  top: 5px;
}
#a413daa898a631d .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a413daa898a631d .article:hover .title {
  color: #d0021b;
}
#a413daa898a631d .article:hover .datetime {
  color: #d0021b;
}
#a413daa898a631d .article:hover .category {
  color: #b6b6b6;
}
#a413daa898a631d .article:hover .abstract {
  color: #b6b6b6;
}
#a413daa898a631d .article:hover .btn_icon {
  color: #b6b6b6;
}
#a413daa898a631d .article:hover .list_icon {
  color: #b6b6b6;
}
#aaec5a0641ab24f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aaec5a0641ab24f .uk-position-center-left-out {
    left: -30px;
  }
  #aaec5a0641ab24f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1333ab8e9a2443 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aef95ae060a87bf .ele-slideshow .uk-dotnav > .uk-active a {
  background: #d0021b;
}
#aef95ae060a87bf .ele-slideshow .uk-slidenav {
  color: #d0021b;
}
#acc51a51eaaa958 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;border-top-left-radius: 8px;border-top-right-radius: 8px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#abccfaece6a4dfa .a9a6ca4696a6655 {
  overflow: hidden;
}
#abccfaece6a4dfa .a9a6ca4696a6655 , #abccfaece6a4dfa .a9a6ca4696a6655 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;text-align: center;font-family: inherit;}#abccfaece6a4dfa .uk-grid {
  margin-left: -15px;
}
#abccfaece6a4dfa .uk-grid > * {
  padding-left: 15px;
}
#abccfaece6a4dfa .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#abccfaece6a4dfa .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abccfaece6a4dfa .uk-position-center-left-out {
    left: -30px;
  }
  #abccfaece6a4dfa .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aae1ba4468a033d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a49f3a388fa9584 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3c80a28dcaf7d2 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a1da6acf9cafa09 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a9b0dacd6fad75a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#acf2da1d9fa4443 a, #acf2da1d9fa4443 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#acf2da1d9fa4443 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a7935af431ab5d2 .aa899aea4faba53  {
        font-weight: normal;
        font-style: normal;
    text-align: right;font-family: inherit;color: rgba(146, 143, 143, 1);}#a7935af431ab5d2 .af627a0966a3ab2 {
  overflow: hidden;
}
#a7935af431ab5d2 .af627a0966a3ab2 , #a7935af431ab5d2 .af627a0966a3ab2 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(85, 85, 85, 1);}#a7935af431ab5d2 .af627a0966a3ab2:hover , #a7935af431ab5d2 .af627a0966a3ab2 *:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(55, 122, 197, 1);}#a7935af431ab5d2 .a123aaf96da969b , #a7935af431ab5d2 .a123aaf96da969b a{color: rgba(221, 220, 224, 1);}#a7935af431ab5d2 .uk-grid {
  margin-left: 0px;
}
#a7935af431ab5d2 .uk-grid > * {
  padding-left: 0px;
}
#a7935af431ab5d2 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a7935af431ab5d2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a7935af431ab5d2 .uk-position-center-left-out {
    left: -30px;
  }
  #a7935af431ab5d2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aa722adb17a0f27 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a5b9cac66ba8018 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad246ada9da5454 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1faeab3bca6a03 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a06cea1801a70e0 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#ae025a9b61a73d8 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae025a9b61a73d8 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae025a9b61a73d8 .ap-icon {
  margin-right: 6px;
}
#ae025a9b61a73d8 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 110px;
}
#ae025a9b61a73d8 .menu-list > li.icon-bottom > a,
#ae025a9b61a73d8 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae025a9b61a73d8 .menu-list > li.icon-bottom > a .ap-icon,
#ae025a9b61a73d8 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae025a9b61a73d8 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae025a9b61a73d8 .menu-list > li.icon-top > a .ap-icon svg,
#ae025a9b61a73d8 .menu-list > li.icon-bottom > a .ap-icon img,
#ae025a9b61a73d8 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae025a9b61a73d8 .menu-list > li.icon-right > a .ap-icon,
#ae025a9b61a73d8 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae025a9b61a73d8 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae025a9b61a73d8 .menu-list > li:hover > a,
#ae025a9b61a73d8 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae025a9b61a73d8 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae025a9b61a73d8 .menu-list ul,
#ae025a9b61a73d8 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae025a9b61a73d8 .menu-list ul {
  top: 109px;
  left: 50%;
  transform: translateX(-50%);
}
#ae025a9b61a73d8 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae025a9b61a73d8 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae025a9b61a73d8 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab43aa460eac712 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a22e8affdca0621 > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab67bab404a29a3 a, #ab67bab404a29a3 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#ab67bab404a29a3 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a9274a0b16a188a {
  overflow: hidden;
}
#a9274a0b16a188a , #a9274a0b16a188a > * {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;text-align: right;font-family: inherit;color: rgba(51, 51, 51, 1);}#ad21ca7b52a71ac .a53ccac203a9c2c {
  overflow: hidden;
}
#ad21ca7b52a71ac .a53ccac203a9c2c , #ad21ca7b52a71ac .a53ccac203a9c2c > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;}#ad21ca7b52a71ac .acf1fa9b57a6136 {
  overflow: hidden;
}
#ad21ca7b52a71ac .acf1fa9b57a6136 , #ad21ca7b52a71ac .acf1fa9b57a6136 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 12px;font-family: inherit;}#ad21ca7b52a71ac .uk-grid > .uk-grid-margin {
  margin-top: nullpx;
}
#ad21ca7b52a71ac .dynamic-list-item {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(155, 155, 155, 0.2);
  border-right-color: rgba(155, 155, 155, 0.2);
  border-left-color: rgba(155, 155, 155, 0.2);
  border-bottom-color: rgba(155, 155, 155, 0.2);
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ad21ca7b52a71ac .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ad21ca7b52a71ac .uk-position-center-left-out {
    left: -30px;
  }
  #ad21ca7b52a71ac .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a1cd2aaedda5f2f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a8312a0ef6af20a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a904ea63e5a6f31 a, #a904ea63e5a6f31 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a904ea63e5a6f31 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a4159a0cbaa3e7f .form-agree {
  display: flex;
  align-items: center;
}
#a4159a0cbaa3e7f .uk-form .form-submit-btn {
  width: 120px;
}
#a4159a0cbaa3e7f .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a4159a0cbaa3e7f .submit-wrap {
  text-align: center;
}
#a4159a0cbaa3e7f .submit-wrap button {
  background-color: #238bcd;
}
#a4159a0cbaa3e7f .submit-wrap button:hover {
  background-color: #ff6600;
}
#a4159a0cbaa3e7f .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a4159a0cbaa3e7f form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a4159a0cbaa3e7f .form-item .uk-input,
#a4159a0cbaa3e7f .form-item .uk-select,
#a4159a0cbaa3e7f .form-item .uk-textarea {
  width: autopx;
}
#a4159a0cbaa3e7f .form-item .auto-height {
  height: auto;
}
#a4159a0cbaa3e7f .uk-form-label,
#a4159a0cbaa3e7f .form-agree,
#a4159a0cbaa3e7f .uk-h3,
#a4159a0cbaa3e7f p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a4159a0cbaa3e7f .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#a4159a0cbaa3e7f .form-item > label {
  flex: none;
}
#a4159a0cbaa3e7f .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#a4159a0cbaa3e7f .form-item .uk-input,
#a4159a0cbaa3e7f .form-item .uk-select,
#a4159a0cbaa3e7f .form-item .uk-textarea,
#a4159a0cbaa3e7f .form-item .address-select,
#a4159a0cbaa3e7f .form-item .uk-grid {
  border: none;
  flex: 1;
}
#a4159a0cbaa3e7f .form-item .address-select .uk-select {
  padding-left: 4px;
}
#adae2a54eaa4829 .form-agree {
  display: flex;
  align-items: center;
}
#adae2a54eaa4829 .uk-form .form-submit-btn {
  width: 120px;
}
#adae2a54eaa4829 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#adae2a54eaa4829 .submit-wrap {
  text-align: center;
}
#adae2a54eaa4829 .submit-wrap button {
  background-color: #238bcd;
}
#adae2a54eaa4829 .submit-wrap button:hover {
  background-color: #ff6600;
}
#adae2a54eaa4829 .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#adae2a54eaa4829 form {
  padding-top: 0px;
  padding-bottom: 0px;
}
#adae2a54eaa4829 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#adae2a54eaa4829 .form-item .uk-input,
#adae2a54eaa4829 .form-item .uk-select,
#adae2a54eaa4829 .form-item .uk-textarea {
  width: autopx;
}
#adae2a54eaa4829 .form-item .auto-height {
  height: auto;
}
#adae2a54eaa4829 .uk-form-label,
#adae2a54eaa4829 .form-agree,
#adae2a54eaa4829 .uk-h3,
#adae2a54eaa4829 p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#adae2a54eaa4829 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#adae2a54eaa4829 .form-item > label {
  flex: none;
}
#adae2a54eaa4829 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#adae2a54eaa4829 .form-item .uk-input,
#adae2a54eaa4829 .form-item .uk-select,
#adae2a54eaa4829 .form-item .uk-textarea,
#adae2a54eaa4829 .form-item .address-select,
#adae2a54eaa4829 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#adae2a54eaa4829 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a4ae2ad7bda132a {
  overflow: hidden;
  pointer-events: none;
}
#a4ae2ad7bda132a > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a4ae2ad7bda132a > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a4ae2ad7bda132a > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a4ae2ad7bda132a > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 50px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a4ae2ad7bda132a > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(/resources/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a4ae2ad7bda132a > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav,
#a4ae2ad7bda132a > .tab-nav,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #eeeeee;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav-horizontal,
#a4ae2ad7bda132a > .tab-nav-horizontal,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a4ae2ad7bda132a > .tab-nav-horizontal::-webkit-scrollbar,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a4ae2ad7bda132a > .tab-nav-horizontal.tagScroll,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a4ae2ad7bda132a > .tab-nav-horizontal.tagScroll li a,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav a,
#a4ae2ad7bda132a > .tab-nav a,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav a {
  padding: 0 100px;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav li a,
#a4ae2ad7bda132a > .tab-nav li a,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 50px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  padding: 0 100px;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav li a svg,
#a4ae2ad7bda132a > .tab-nav li a svg,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav li a .ap_icon,
#a4ae2ad7bda132a > .tab-nav li a .ap_icon,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav li a:hover,
#a4ae2ad7bda132a > .tab-nav li a:hover,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-bottom-width: 0;
  border-bottom-style: solid;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav li.uk-active a,
#a4ae2ad7bda132a > .tab-nav li.uk-active a,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #4a90e2;
  border-bottom-style: solid;
  background-color: #238bcd;
}
#a4ae2ad7bda132a > .tab-wrap > div > .tab-nav li:last-child a,
#a4ae2ad7bda132a > .tab-nav li:last-child a,
#a4ae2ad7bda132a > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a4ae2ad7bda132a > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a4ae2ad7bda132a .layout-left li,
#a4ae2ad7bda132a .layout-center li,
#a4ae2ad7bda132a .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a4ae2ad7bda132a .layout-left li a,
#a4ae2ad7bda132a .layout-center li a,
#a4ae2ad7bda132a .layout-right li a {
  height: 100%;
}
#a4ae2ad7bda132a > .tab-tabs .layout-left {
  text-align: left;
}
#a4ae2ad7bda132a > .tab-tabs .layout-center {
  text-align: center;
}
#a4ae2ad7bda132a > .tab-tabs .layout-right {
  text-align: right;
}
#a4ae2ad7bda132a .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a4ae2ad7bda132a .tab-content-wrap {
  background-color: #ffffff;
}
#a4ae2ad7bda132a .tab-contents,
#a4ae2ad7bda132a .tab-contents-wrap {
  pointer-events: none;
}
#a4ae2ad7bda132a .tab-content,
#a4ae2ad7bda132a .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a4ae2ad7bda132a .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a4ae2ad7bda132a .tab-wrap .tab-contents {
  height: 100%;
}
#a4ae2ad7bda132a .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a4ae2ad7bda132a .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a4ae2ad7bda132a .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a1f2dacffea3083 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a98a6ae402a79c7 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#ad0d9ae80ea270a > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#a5e22acfc6a3f39 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a5e22acfc6a3f39 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a5e22acfc6a3f39 .ap-icon {
  margin-right: 6px;
}
#a5e22acfc6a3f39 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a5e22acfc6a3f39 .menu-list > li.icon-bottom > a,
#a5e22acfc6a3f39 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a5e22acfc6a3f39 .menu-list > li.icon-bottom > a .ap-icon,
#a5e22acfc6a3f39 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a5e22acfc6a3f39 .menu-list > li.icon-bottom > a .ap-icon svg,
#a5e22acfc6a3f39 .menu-list > li.icon-top > a .ap-icon svg,
#a5e22acfc6a3f39 .menu-list > li.icon-bottom > a .ap-icon img,
#a5e22acfc6a3f39 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a5e22acfc6a3f39 .menu-list > li.icon-right > a .ap-icon,
#a5e22acfc6a3f39 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a5e22acfc6a3f39 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a5e22acfc6a3f39 .menu-list > li:hover > a,
#a5e22acfc6a3f39 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5e22acfc6a3f39 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a5e22acfc6a3f39 .menu-list ul,
#a5e22acfc6a3f39 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a5e22acfc6a3f39 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a5e22acfc6a3f39 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5e22acfc6a3f39 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5e22acfc6a3f39 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a7b59a639aa4a0c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a7b59a639aa4a0c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a7b59a639aa4a0c .ap-icon {
  margin-right: 6px;
}
#a7b59a639aa4a0c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a7b59a639aa4a0c .menu-list > li.icon-bottom > a,
#a7b59a639aa4a0c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a7b59a639aa4a0c .menu-list > li.icon-bottom > a .ap-icon,
#a7b59a639aa4a0c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a7b59a639aa4a0c .menu-list > li.icon-bottom > a .ap-icon svg,
#a7b59a639aa4a0c .menu-list > li.icon-top > a .ap-icon svg,
#a7b59a639aa4a0c .menu-list > li.icon-bottom > a .ap-icon img,
#a7b59a639aa4a0c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a7b59a639aa4a0c .menu-list > li.icon-right > a .ap-icon,
#a7b59a639aa4a0c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a7b59a639aa4a0c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a7b59a639aa4a0c .menu-list > li:hover > a,
#a7b59a639aa4a0c .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a7b59a639aa4a0c .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a7b59a639aa4a0c .menu-list ul,
#a7b59a639aa4a0c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a7b59a639aa4a0c .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#a7b59a639aa4a0c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a7b59a639aa4a0c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a7b59a639aa4a0c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#af0b1ab668a94e0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af0b1ab668a94e0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af0b1ab668a94e0 .ap-icon {
  margin-right: 6px;
}
#af0b1ab668a94e0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#af0b1ab668a94e0 .menu-list > li.icon-bottom > a,
#af0b1ab668a94e0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af0b1ab668a94e0 .menu-list > li.icon-bottom > a .ap-icon,
#af0b1ab668a94e0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af0b1ab668a94e0 .menu-list > li.icon-bottom > a .ap-icon svg,
#af0b1ab668a94e0 .menu-list > li.icon-top > a .ap-icon svg,
#af0b1ab668a94e0 .menu-list > li.icon-bottom > a .ap-icon img,
#af0b1ab668a94e0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af0b1ab668a94e0 .menu-list > li.icon-right > a .ap-icon,
#af0b1ab668a94e0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af0b1ab668a94e0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af0b1ab668a94e0 .menu-list > li:hover > a,
#af0b1ab668a94e0 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af0b1ab668a94e0 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#af0b1ab668a94e0 .menu-list ul,
#af0b1ab668a94e0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af0b1ab668a94e0 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#af0b1ab668a94e0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af0b1ab668a94e0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af0b1ab668a94e0 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a13dda8bfea6e64 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a13dda8bfea6e64 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a13dda8bfea6e64 .ap-icon {
  margin-right: 6px;
}
#a13dda8bfea6e64 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a13dda8bfea6e64 .menu-list > li.icon-bottom > a,
#a13dda8bfea6e64 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a13dda8bfea6e64 .menu-list > li.icon-bottom > a .ap-icon,
#a13dda8bfea6e64 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a13dda8bfea6e64 .menu-list > li.icon-bottom > a .ap-icon svg,
#a13dda8bfea6e64 .menu-list > li.icon-top > a .ap-icon svg,
#a13dda8bfea6e64 .menu-list > li.icon-bottom > a .ap-icon img,
#a13dda8bfea6e64 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a13dda8bfea6e64 .menu-list > li.icon-right > a .ap-icon,
#a13dda8bfea6e64 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a13dda8bfea6e64 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a13dda8bfea6e64 .menu-list > li:hover > a,
#a13dda8bfea6e64 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a13dda8bfea6e64 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a13dda8bfea6e64 .menu-list ul,
#a13dda8bfea6e64 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a13dda8bfea6e64 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a13dda8bfea6e64 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a13dda8bfea6e64 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a13dda8bfea6e64 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a6b4ca3adea0fe0 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6b4ca3adea0fe0 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6b4ca3adea0fe0 .ap-icon {
  margin-right: 6px;
}
#a6b4ca3adea0fe0 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a6b4ca3adea0fe0 .menu-list > li.icon-bottom > a,
#a6b4ca3adea0fe0 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6b4ca3adea0fe0 .menu-list > li.icon-bottom > a .ap-icon,
#a6b4ca3adea0fe0 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6b4ca3adea0fe0 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6b4ca3adea0fe0 .menu-list > li.icon-top > a .ap-icon svg,
#a6b4ca3adea0fe0 .menu-list > li.icon-bottom > a .ap-icon img,
#a6b4ca3adea0fe0 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6b4ca3adea0fe0 .menu-list > li.icon-right > a .ap-icon,
#a6b4ca3adea0fe0 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6b4ca3adea0fe0 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6b4ca3adea0fe0 .menu-list > li:hover > a,
#a6b4ca3adea0fe0 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a6b4ca3adea0fe0 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a6b4ca3adea0fe0 .menu-list ul,
#a6b4ca3adea0fe0 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6b4ca3adea0fe0 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a6b4ca3adea0fe0 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6b4ca3adea0fe0 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6b4ca3adea0fe0 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aba07a4f57ab738 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a2cdca0d6ea6175 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8cb5a7ba6a81b6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a31f5abfcaaee82 > .ele-wrap {background-color: rgba(35, 139, 205, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-top-right-radius: 5px;}#a27daaffeea8a7b > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#af660a815ea53ac .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#af660a815ea53ac .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#af660a815ea53ac .ap-icon {
  margin-right: 6px;
}
#af660a815ea53ac .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#af660a815ea53ac .menu-list > li.icon-bottom > a,
#af660a815ea53ac .menu-list > li.icon-top > a {
  flex-direction: column;
}
#af660a815ea53ac .menu-list > li.icon-bottom > a .ap-icon,
#af660a815ea53ac .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#af660a815ea53ac .menu-list > li.icon-bottom > a .ap-icon svg,
#af660a815ea53ac .menu-list > li.icon-top > a .ap-icon svg,
#af660a815ea53ac .menu-list > li.icon-bottom > a .ap-icon img,
#af660a815ea53ac .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#af660a815ea53ac .menu-list > li.icon-right > a .ap-icon,
#af660a815ea53ac .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#af660a815ea53ac .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#af660a815ea53ac .menu-list > li:hover > a,
#af660a815ea53ac .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af660a815ea53ac .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#af660a815ea53ac .menu-list ul,
#af660a815ea53ac .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#af660a815ea53ac .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#af660a815ea53ac .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#af660a815ea53ac .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#af660a815ea53ac .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a22c9ad373a0f47 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a22c9ad373a0f47 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a22c9ad373a0f47 .ap-icon {
  margin-right: 6px;
}
#a22c9ad373a0f47 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
}
#a22c9ad373a0f47 .menu-list > li.icon-bottom > a,
#a22c9ad373a0f47 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a22c9ad373a0f47 .menu-list > li.icon-bottom > a .ap-icon,
#a22c9ad373a0f47 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a22c9ad373a0f47 .menu-list > li.icon-bottom > a .ap-icon svg,
#a22c9ad373a0f47 .menu-list > li.icon-top > a .ap-icon svg,
#a22c9ad373a0f47 .menu-list > li.icon-bottom > a .ap-icon img,
#a22c9ad373a0f47 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a22c9ad373a0f47 .menu-list > li.icon-right > a .ap-icon,
#a22c9ad373a0f47 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a22c9ad373a0f47 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a22c9ad373a0f47 .menu-list > li:hover > a,
#a22c9ad373a0f47 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a22c9ad373a0f47 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a22c9ad373a0f47 .menu-list ul,
#a22c9ad373a0f47 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a22c9ad373a0f47 .menu-list ul {
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
}
#a22c9ad373a0f47 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a22c9ad373a0f47 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a22c9ad373a0f47 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ae539a4ac5a4034 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ae539a4ac5a4034 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ae539a4ac5a4034 .ap-icon {
  margin-right: 6px;
}
#ae539a4ac5a4034 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#ae539a4ac5a4034 .menu-list > li.icon-bottom > a,
#ae539a4ac5a4034 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ae539a4ac5a4034 .menu-list > li.icon-bottom > a .ap-icon,
#ae539a4ac5a4034 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ae539a4ac5a4034 .menu-list > li.icon-bottom > a .ap-icon svg,
#ae539a4ac5a4034 .menu-list > li.icon-top > a .ap-icon svg,
#ae539a4ac5a4034 .menu-list > li.icon-bottom > a .ap-icon img,
#ae539a4ac5a4034 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ae539a4ac5a4034 .menu-list > li.icon-right > a .ap-icon,
#ae539a4ac5a4034 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ae539a4ac5a4034 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ae539a4ac5a4034 .menu-list > li:hover > a,
#ae539a4ac5a4034 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#ae539a4ac5a4034 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#ae539a4ac5a4034 .menu-list ul,
#ae539a4ac5a4034 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ae539a4ac5a4034 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#ae539a4ac5a4034 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ae539a4ac5a4034 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ae539a4ac5a4034 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8168a5280a2809 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8168a5280a2809 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8168a5280a2809 .ap-icon {
  margin-right: 6px;
}
#a8168a5280a2809 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  color: #9b9b9b;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 105px;
  background-color: rgba(0, 0, 0, 0);
  height: 20px;
}
#a8168a5280a2809 .menu-list > li.icon-bottom > a,
#a8168a5280a2809 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8168a5280a2809 .menu-list > li.icon-bottom > a .ap-icon,
#a8168a5280a2809 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8168a5280a2809 .menu-list > li.icon-bottom > a .ap-icon svg,
#a8168a5280a2809 .menu-list > li.icon-top > a .ap-icon svg,
#a8168a5280a2809 .menu-list > li.icon-bottom > a .ap-icon img,
#a8168a5280a2809 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8168a5280a2809 .menu-list > li.icon-right > a .ap-icon,
#a8168a5280a2809 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8168a5280a2809 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8168a5280a2809 .menu-list > li:hover > a,
#a8168a5280a2809 .menu-list > li.active > a {
  background: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a8168a5280a2809 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #eeeeee;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  background-color: rgba(0, 0, 0, 0);
}
#a8168a5280a2809 .menu-list ul,
#a8168a5280a2809 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8168a5280a2809 .menu-list ul {
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
#a8168a5280a2809 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8168a5280a2809 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8168a5280a2809 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3726a440fa1dd3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a3726a440fa1dd3 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a3726a440fa1dd3 .ap-icon {
  margin-right: 6px;
}
#a3726a440fa1dd3 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 0;
  border-top-color: #999999;
  border-top-style: none;
  border-right-color: #999999;
  border-left-color: #238bcd;
  border-bottom-color: #999999;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  width: 100px;
  height: nullpx;
}
#a3726a440fa1dd3 .menu-list > li.icon-bottom > a,
#a3726a440fa1dd3 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a3726a440fa1dd3 .menu-list > li.icon-bottom > a .ap-icon,
#a3726a440fa1dd3 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a3726a440fa1dd3 .menu-list > li.icon-bottom > a .ap-icon svg,
#a3726a440fa1dd3 .menu-list > li.icon-top > a .ap-icon svg,
#a3726a440fa1dd3 .menu-list > li.icon-bottom > a .ap-icon img,
#a3726a440fa1dd3 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a3726a440fa1dd3 .menu-list > li.icon-right > a .ap-icon,
#a3726a440fa1dd3 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a3726a440fa1dd3 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a3726a440fa1dd3 .menu-list > li:hover > a,
#a3726a440fa1dd3 .menu-list > li.active > a {
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3726a440fa1dd3 .menu-list > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #238bcd;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3726a440fa1dd3 .menu-list ul,
#a3726a440fa1dd3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a3726a440fa1dd3 .menu-list ul {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
#a3726a440fa1dd3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3726a440fa1dd3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3726a440fa1dd3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8b6fa3926a5ea9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-top-left-radius: 5px;border-bottom-right-radius: 5px;border-top-right-radius: 5px;border-bottom-left-radius: 5px;}#aa3f3acf34aa24d > .ele-wrap {background-color: rgba(249, 249, 249, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7602ade0faeb36 a, #a7602ade0faeb36 {
        font-weight: normal;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(35, 139, 205, 1);}#a7602ade0faeb36 a:hover {
        font-weight: normal;
        font-style: normal;
    text-decoration: underline;font-family: inherit;color: rgba(0, 0, 0, 1);}#a9100ac315a779d > .ele-wrap {background-color: rgba(255, 255, 204, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad871a74dfa3fbb .form-agree {
  display: flex;
  align-items: center;
}
#ad871a74dfa3fbb .uk-form .form-submit-btn {
  width: 120px;
}
#ad871a74dfa3fbb .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#ad871a74dfa3fbb .submit-wrap {
  text-align: center;
}
#ad871a74dfa3fbb .submit-wrap button {
  background-color: #238bcd;
}
#ad871a74dfa3fbb .submit-wrap button:hover {
  background-color: #ff6600;
}
#ad871a74dfa3fbb .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#ad871a74dfa3fbb form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#ad871a74dfa3fbb .form-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
}
#ad871a74dfa3fbb .form-item .uk-input,
#ad871a74dfa3fbb .form-item .uk-select,
#ad871a74dfa3fbb .form-item .uk-textarea {
  border: none !important;
}
#ad871a74dfa3fbb .form-item .uk-input,
#ad871a74dfa3fbb .form-item .uk-select,
#ad871a74dfa3fbb .form-item .uk-textarea {
  width: autopx;
}
#ad871a74dfa3fbb .form-item .auto-height {
  height: auto;
}
#ad871a74dfa3fbb .uk-form-label,
#ad871a74dfa3fbb .form-agree,
#ad871a74dfa3fbb .uk-h3,
#ad871a74dfa3fbb p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ad871a74dfa3fbb .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}
#ad871a74dfa3fbb .form-item > label {
  flex: none;
}
#ad871a74dfa3fbb .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#ad871a74dfa3fbb .form-item .uk-input,
#ad871a74dfa3fbb .form-item .uk-select,
#ad871a74dfa3fbb .form-item .uk-textarea,
#ad871a74dfa3fbb .form-item .address-select,
#ad871a74dfa3fbb .form-item .uk-grid {
  border: none;
  flex: 1;
}
#ad871a74dfa3fbb .form-item .address-select .uk-select {
  padding-left: 4px;
}
#abd93ad7d0ab3ae .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6452a691fa94e3 {
  min-height: 90vh;
  /* mobile */
}
#a6452a691fa94e3 .search-highlight {
  background: yellow;
}
#a6452a691fa94e3 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a6452a691fa94e3 .el-title {
  margin-bottom: 20px;
}
#a6452a691fa94e3 .el-item:hover .el-title {
  color: #238bcd;
}
#a6452a691fa94e3 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a6452a691fa94e3 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a6452a691fa94e3 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a6452a691fa94e3 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a6452a691fa94e3 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a6452a691fa94e3 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a6452a691fa94e3 .el-title {
    margin-bottom: 0;
  }
  #a6452a691fa94e3 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a6452a691fa94e3 .category {
    font-size: 12px;
  }
  #a6452a691fa94e3 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#ae5faaaaa8ac876 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a768fa5526a1ba4 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a768fa5526a1ba4 .switch_item {
  margin-right: 10px;
}
#a768fa5526a1ba4 a.switch_item:hover {
  text-decoration: underline;
}
#a768fa5526a1ba4 .slider {
  width: 420px;
  height: 600px;
}
#a768fa5526a1ba4 .uk-slideshow-items {
  height: 100%;
}
#a768fa5526a1ba4 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a768fa5526a1ba4 .login-wrap {
  width: 100%;
  height: 100%;
}
#a768fa5526a1ba4 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a768fa5526a1ba4 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a768fa5526a1ba4 .phone-login-box {
  margin: 40px auto 40px;
}
#a768fa5526a1ba4 .login-header {
  margin-bottom: 24px;
}
#a768fa5526a1ba4 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a768fa5526a1ba4 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a768fa5526a1ba4 .input-item input {
  width: 100%;
  padding: 0 16px 0 40px;
  height: 43px;
  border-radius: 0 21px 21px 0;
  position: absolute;
  right: 0;
  border: 0;
  line-height: 43px;
  background-color: transparent;
  outline: 0;
  font-size: 14px;
}
#a768fa5526a1ba4 .forget_password {
  cursor: pointer;
}
#a768fa5526a1ba4 .forget_password:hover {
  color: #238bcd;
}
#a768fa5526a1ba4 .input-item input.error,
#a768fa5526a1ba4 .input-item input.error::placeholder {
  color: #fc4343;
}
#a768fa5526a1ba4 .input-item input::placeholder {
  color: #999;
}
#a768fa5526a1ba4 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a768fa5526a1ba4 .form-item {
  margin: 24px 0;
}
#a768fa5526a1ba4 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a768fa5526a1ba4 .send-code {
  float: left;
  margin-left: 20px;
}
#a768fa5526a1ba4 .verifycode-input button {
  display: block;
  padding: 0;
  height: 45px;
  width: 105px;
  background-color: #f1f7ff;
  border-radius: 22px;
  font-size: 14px;
  -webkit-transition: .3s;
  transition: .3s;
  color: #999;
  cursor: pointer;
}
#a768fa5526a1ba4 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a768fa5526a1ba4 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a768fa5526a1ba4 .login_btn_wrap {
  text-align: center;
}
#a768fa5526a1ba4 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a768fa5526a1ba4 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a768fa5526a1ba4 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#abc82ad05ea01cb .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#abc82ad05ea01cb .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#abc82ad05ea01cb .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#abc82ad05ea01cb .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#abc82ad05ea01cb .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#abc82ad05ea01cb .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#abc82ad05ea01cb .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#abc82ad05ea01cb .nav-list {
  padding: 0 20px;
}
#abc82ad05ea01cb .nav-list .nav-item {
  display: inline-block;
  line-height: 21px;
  padding: 2px 6px 3px;
  font-size: 14px;
  color: #666;
  margin: 10px 30px 15px 0;
  cursor: pointer;
}
#abc82ad05ea01cb .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#abc82ad05ea01cb .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#abc82ad05ea01cb .order-item:hover {
  background: #f7f7f7;
}
#abc82ad05ea01cb .del-order {
  cursor: pointer;
}
#abc82ad05ea01cb .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#abc82ad05ea01cb .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#abc82ad05ea01cb .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#abc82ad05ea01cb .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#abc82ad05ea01cb .goods-item .goods-info {
  padding: 0 15px;
}
#abc82ad05ea01cb .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#abc82ad05ea01cb .appoint-time {
  margin-bottom: 4px;
}
#abc82ad05ea01cb .appoint-name {
  color: #333;
  font-size: 14px;
}
#abc82ad05ea01cb .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#abc82ad05ea01cb .goods-item .goods-name {
  color: #333;
}
#abc82ad05ea01cb .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#abc82ad05ea01cb .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#abc82ad05ea01cb .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#abc82ad05ea01cb .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#abc82ad05ea01cb .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#abc82ad05ea01cb .order-btns .btn {
  line-height: 26px;
  border-radius: 2px;
  border: 1px solid #ececec;
  padding: 0 14px;
  display: inline-block;
  margin-left: 8px;
  background: #fff;
  color: #333;
}
#abc82ad05ea01cb .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#abc82ad05ea01cb .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#abc82ad05ea01cb .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#abc82ad05ea01cb .setting-form {
  padding: 30px 20px;
}
#abc82ad05ea01cb .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#abc82ad05ea01cb .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#abc82ad05ea01cb .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#abc82ad05ea01cb .setting-form .setting-btns {
  margin-left: 130px;
}
#abc82ad05ea01cb .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#abc82ad05ea01cb .setting-wrap {
  position: relative;
}
#abc82ad05ea01cb .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#abc82ad05ea01cb .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#abc82ad05ea01cb .user-info .levels {
  color: #888;
  font-size: 12px;
}
#abc82ad05ea01cb .address-wrap {
  padding: 30px 20px;
}
#abc82ad05ea01cb .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#abc82ad05ea01cb .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#abc82ad05ea01cb .addr-list {
  min-height: 200px;
}
#abc82ad05ea01cb .addr-detail .addr-item-name,
#abc82ad05ea01cb .addr-detail .addr-default {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0 5px;
  vertical-align: middle;
  margin: -2px 5px 0 0;
  max-width: 8em;
  height: 16px;
  line-height: 14px;
  font-size: 12px;
  color: #4b9bfb;
  border: 1px solid #4b9bfb;
}
#abc82ad05ea01cb .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#abc82ad05ea01cb .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#abc82ad05ea01cb .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#abc82ad05ea01cb .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#abc82ad05ea01cb .add-addr {
  height: 32px;
  line-height: 30px;
}
#abc82ad05ea01cb .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(/resources/sys/img/icons/info-pass.png) center center no-repeat;
  background-size: contain;
}
#abc82ad05ea01cb .publish-item {
  cursor: default;
  min-height: 120px;
}
#abc82ad05ea01cb .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#abc82ad05ea01cb .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#abc82ad05ea01cb .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #238bcd;
}
#abc82ad05ea01cb .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#abda9adeaba8efa {
  min-height: 90vh;
  /* mobile */
}
#abda9adeaba8efa .search-highlight {
  background: yellow;
}
#abda9adeaba8efa .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#abda9adeaba8efa .el-title {
  margin-bottom: 20px;
}
#abda9adeaba8efa .el-item:hover .el-title {
  color: #238bcd;
}
#abda9adeaba8efa .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#abda9adeaba8efa .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#abda9adeaba8efa .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#abda9adeaba8efa .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#abda9adeaba8efa .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#abda9adeaba8efa .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #abda9adeaba8efa .el-title {
    margin-bottom: 0;
  }
  #abda9adeaba8efa .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #abda9adeaba8efa .category {
    font-size: 12px;
  }
  #abda9adeaba8efa .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}#a9dc3afd78acedb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a5ebfa4493a2172 .comment-detail {
  min-height: 600px;
}
#a5ebfa4493a2172 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a5ebfa4493a2172 table th,
#a5ebfa4493a2172 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a5ebfa4493a2172 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a5ebfa4493a2172 .red {
  color: #F00!important;
}
#a5ebfa4493a2172 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/resources/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#ae6c3a7183a73b3 .comment-detail {
  min-height: 600px;
}
#ae6c3a7183a73b3 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#ae6c3a7183a73b3 table th,
#ae6c3a7183a73b3 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#ae6c3a7183a73b3 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#ae6c3a7183a73b3 .red {
  color: #F00!important;
}
#ae6c3a7183a73b3 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(/resources/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a4f38acdc9ad368 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a4f38acdc9ad368 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a4f38acdc9ad368 .menu-list > li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #238bcd;
  content: "";
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#a4f38acdc9ad368 .menu-list > li > a {
  padding: 0 38px;
}
#a4f38acdc9ad368 .menu-list > li:hover:before {
  height: 100%;
}
#a4f38acdc9ad368 .menu-list > li:hover:after {
  color: auto;
}
#a4f38acdc9ad368 .menu-list > li:after {
  position: absolute;
  width: 1px;
  left: -2px;
  top: 50%;
  margin-top: -15px;
  font-size: 15px;
  line-height: 30px;
  color: rgba(34, 25, 77, 0);
  font-weight: 400;
  content: "|";
}
#a4f38acdc9ad368 .menu-list > li:first-child:after {
  content: "";
}
#a4f38acdc9ad368 .menu-list > li.active > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 .menu-list > li ul {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
#a4f38acdc9ad368 .menu-list > li ul li {
  position: relative;
}
#a4f38acdc9ad368 .menu-list > li ul li a {
  position: relative;
  display: block;
  padding: 10px 20px;
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #222222;
  width: 148px;
}
#a4f38acdc9ad368 .menu-list > li > a {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 30px;
  opacity: 1;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  text-align: left;
  font-family: inherit;
  color: #336699;
}
#a4f38acdc9ad368 .menu-list > li:hover > a {
  background-color: #238bcd;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a4f38acdc9ad368 li ul li:hover > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #238bcd;
  background-color: #ffffff;
}
#a4f38acdc9ad368 li ul li a:active,
#a4f38acdc9ad368 li ul li a.active,
#a4f38acdc9ad368 li ul li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  background-color: #238bcd;
}
#a4f38acdc9ad368 li ul,
#a4f38acdc9ad368 li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
}
#a4f38acdc9ad368 li:hover > ul {
  left: auto;
}
#a4f38acdc9ad368 li ul li:hover ul {
  left: 100%;
  top: 0;
}
#af999ac2c6a859d form {
  width: 100%;
  height: 100%;
}
#af999ac2c6a859d .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af999ac2c6a859d .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#af999ac2c6a859d .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af999ac2c6a859d .search-box .search-type.show {
  display: block;
}
#af999ac2c6a859d .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #eeeeee;
  cursor: pointer;
  padding: 0 18px;
}
#af999ac2c6a859d .search-box .search-type li:hover {
  color: #007ac3;
}
#af999ac2c6a859d .search-box .search-type li.active {
  color: #007ac3;
}
#af999ac2c6a859d .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #eeeeee;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-width: 0;
  border-top-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-bottom-style: none;
}
#af999ac2c6a859d .inner-form .input-field {
  height: 100%;
}
#af999ac2c6a859d .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #8b8b8b;
}
#af999ac2c6a859d .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #b1b1b1;
}
#af999ac2c6a859d .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #eeeeee;
  position: relative;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af999ac2c6a859d .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #8b8b8b;
  margin: 0 15px;
}
#af999ac2c6a859d .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af999ac2c6a859d .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #238bcd;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}
#af999ac2c6a859d .btn-search:hover {
  background: #007ac3;
}
#af999ac2c6a859d .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a20eeada03a1630 > .ele-wrap {background-color: rgba(255, 255, 255, 1);}